Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
valgrind
/
7f2fce177104c82954226856119c9a390836ddf0
/
.
/
memcheck
/
tests
/
mmaptest.c
blob: 74a21ed2601349d24f58481341a459fdc749ae21 [
file
] [
log
] [
blame
]
#include
<sys/types.h>
#include
<sys/stat.h>
#include
<fcntl.h>
#include
<unistd.h>
#include
<sys/mman.h>
int
main
()
{
int
fd
;
mkdir
(
"dir"
,
0777
);
fd
=
open
(
"dir"
,
O_RDONLY
);
mmap
(
NULL
,
4711
,
PROT_READ
,
MAP_PRIVATE
,
fd
,
0
);
return
0
;
}