File: shared_mremap.c

package info (click to toggle)
samba 2%3A4.23.3%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 188,088 kB
  • sloc: ansic: 2,007,520; python: 272,673; sh: 72,258; xml: 51,653; perl: 36,094; makefile: 6,353; yacc: 5,323; exp: 1,582; lex: 1,504; cpp: 1,224; awk: 589; java: 119; csh: 58; pascal: 54; sed: 45; asm: 30
file content (51 lines) | stat: -rw-r--r-- 783 bytes parent folder | download | duplicates (19)
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
/* this tests whether we can use mremap */

#if defined(HAVE_UNISTD_H)
#include <unistd.h>
#endif
#ifdef HAVE_STDLIB_H
#include <stdlib.h>
#endif
#include <sys/mman.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>

#define DATA "conftest.mmap"

#ifndef MAP_FILE
#define MAP_FILE 0
#endif

#ifndef MAP_FAILED
#define MAP_FAILED (int *)-1
#endif

int main(void)
{
	int *buf;
	int fd;
	int err = 1;

	fd = open(DATA, O_RDWR|O_CREAT|O_TRUNC, 0666);
	if (fd == -1) {
		exit(1);
	}

	buf = (int *)mmap(NULL, 0x1000, PROT_READ | PROT_WRITE,
			  MAP_FILE | MAP_SHARED, fd, 0);
	if (buf == MAP_FAILED) {
		goto done;
	}

	buf = mremap(buf, 0x1000, 0x2000, MREMAP_MAYMOVE);
	if (buf == MAP_FAILED) {
		goto done;
	}

	err = 0;
done:
	close(fd);
	unlink(DATA);
	exit(err);
}