__C__ int sasMsyncRandom(void *startAddr, size_t size)
Inform the kernel that those pages will be needed soon and will be accessed in random order...
__C__ int sasMsyncPurge(void *startAddr, size_t size, int asyncBool)
Write a range of pages to persistent storage and inform the kernel that those pages can be removed fr...
__C__ int sasMsyncRelease(void *startAddr, size_t size)
Inform the kernel that those pages can be removed from real memory.
#define __C__
ignore this macro behind the curtain
Definition: sasmsync.h:32
__C__ int sasMsyncWrite(void *startAddr, size_t size, int asyncBool)
Write a range of pages to persistent storage.
__C__ int sasMsyncBring(void *startAddr, size_t size)
Inform the kernel that those pages will be needed soon.
__C__ int sasMsyncSequential(void *startAddr, size_t size)
Inform the kernel that those pages will be needed soon and will be accessed in sequential order...