mirror of
https://github.com/Qortal/Brooklyn.git
synced 2025-02-13 02:35:54 +00:00
2a709f28fa
* 0day explit mitigation * Memory corruption prevention * Privilege escalation prevention * Buffer over flow prevention * File System corruption defense * Thread escape prevention This may very well be the most intensive inclusion to BrooklynR. This will not be part of an x86 suite nor it will be released as tool kit. The security core toolkit will remain part of kernel base.
12 lines
263 B
C
12 lines
263 B
C
#ifndef __QCOM_SMEM_H__
|
|
#define __QCOM_SMEM_H__
|
|
|
|
#define QCOM_SMEM_HOST_ANY -1
|
|
|
|
int qcom_smem_alloc(unsigned host, unsigned item, size_t size);
|
|
void *qcom_smem_get(unsigned host, unsigned item, size_t *size);
|
|
|
|
int qcom_smem_get_free_space(unsigned host);
|
|
|
|
#endif
|