From da5c103bf4d590572da4e53bcd5fc36afc08f441 Mon Sep 17 00:00:00 2001 From: CTurt Date: Sat, 16 Apr 2016 11:16:56 +0100 Subject: [PATCH] Update memory.h --- libPS4/include/memory.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libPS4/include/memory.h b/libPS4/include/memory.h index de7b5fd..6d97a17 100644 --- a/libPS4/include/memory.h +++ b/libPS4/include/memory.h @@ -46,6 +46,8 @@ void *mmap(void *addr, size_t len, int prot, int flags, int fd, off_t offset); int munmap(void *addr, size_t len); int mprotect(void *addr, size_t len, int prot); int msync(void *addr, size_t len, int flags); +int mlock(void *addr, size_t len); +int munlock(void *addr, size_t len); int getMemoryInfo(void *address, struct memoryRegionInfo *destination); int getOtherMemoryInfo(void *address, int nextMatchIfUnmapped, struct otherMemoryRegionInfo *destination); -- 2.11.4.GIT