mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-06-30 16:28:30 +00:00
Add mlock() and munlock()
This commit is contained in:
parent
7c9ef924bf
commit
fec139f423
8 changed files with 115 additions and 2 deletions
|
@ -69,6 +69,8 @@ void *mremap(void *, size_t, size_t, int, ...);
|
|||
int munmap(void *, uint64_t);
|
||||
int mprotect(void *, uint64_t, int) privileged;
|
||||
int msync(void *, size_t, int);
|
||||
int mlock(const void *, size_t);
|
||||
int munlock(const void *, size_t);
|
||||
void *sbrk(intptr_t);
|
||||
int brk(void *);
|
||||
long gethostid(void);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue