summaryrefslogtreecommitdiff
path: root/c/mmap.c
blob: 8d934c4536f4f5253a186a750d546637f6ddc1af (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#include <sys/mman.h>
#include <stdio.h>
#include <unistd.h>
#include <stdlib.h>

int main()
{
	int *e;
	e = mmap(NULL, 4096, PROT_READ | PROT_WRITE,
		 MAP_ANONYMOUS | MAP_PRIVATE, -1, 0);
	if (e == MAP_FAILED) {
		perror("mmap");
		return 1;
	}

	write(1, e, 4096);
	munmap(e, 4096);
	e = malloc(4096);
	if (e == NULL) {
		perror("malloc");
		return 2;
	}
	write(1, e, 4096);
	return 0;
}