/* The purpose of this program is to test the dynamic * task_unmapped_base patch for the Linux kernel. */ #include #include int main() { while (1) { mmap(NULL,4096,PROT_NONE,MAP_PRIVATE|MAP_ANON,0,0); sleep(1); } }