blob: 89fc4b0a0074cdd9f8057ea44cfc0755a6415758 [file] [log] [blame]
#include <stdlib.h>
#include <sys/mman.h>
#include <stdio.h>
int main(void)
{
void *p;
unsigned long size = 2ul * 1023ul * 1024ul * 1024ul; // just under 2^31 (4GB)
fprintf(stderr, "Attempting too-big malloc()...\n");
p = malloc(size); // way too big!
if (p)
fprintf(stderr, "huge malloc() succeeded??\n");
fprintf(stderr, "Attempting too-big mmap()...\n");
p = mmap( 0, size, PROT_READ|PROT_WRITE|PROT_EXEC,
MAP_PRIVATE|MAP_ANON, -1, 0 );
if (-1 != (int)p)
fprintf(stderr, "huge mmap() succeeded??\n");
return 0;
}