59extern void*
CreateMemMapping(
void* address,
size_t len,
int prot,
int flags,
int fd,
69extern void MemMapDirty(
void* startingVaddr,
size_t len,
int flags,
int prot);
COMPILER_DEPENDENT_UINT64 uint64_t
Definition acefiex.h:165
void * CreateMemMapping(void *address, size_t len, int prot, int flags, int fd, uint64_t offset)
CreateMemMapping – Create a memory mapping of just memory, file or device.
Definition mmap.cpp:117
void UnmapMemMapping(void *address, size_t len)
UnmapMemMapping – unmaps a memory mapping.
Definition mmap.cpp:293
void MemMapDirty(void *startingVaddr, size_t len, int flags, int prot)
MemMapDirty – dirty update previously allocated memory map.
Definition mmap.cpp:249
void SharedMemMapListInitialise()
SharedMemMapListInitialise – initialise the shared memory map list.
Definition mmap.cpp:68