blob: 3a8acb0c9428e296e34e3cd1071642790f001733 [file] [log] [blame]
#include <unistd.h>
#include <sys/mman.h>
#include <stdio.h>
#include <stdlib.h>
/* Point of this is that the fd of an PROT_EXEC segment is -1, so Valgrind
shouldn't add it to its list of exe segs, and thus it won't be discarded
upon the munmap() (so no "discard" message). */
int main()
{
void* m;
m = mmap(NULL, 100, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_ANON, -1, 0);
if (m == (void*)-1) {
fprintf(stderr, "error mmapping\n");
exit(1);
}
munmap(m, 100);
return 0;
}