Handbook
Glossary
mmap ( addr len prot flags fd offset -- void* )
Vocabulary
unix
.
ffi
Inputs
addr
an
object
len
an
object
prot
an
object
flags
an
object
fd
an
object
offset
an
object
Outputs
void*
an
object
Definition
USING:
alien.c-types
alien.syntax
unix.types
;
IN:
unix.ffi
LIBRARY:
libc
FUNCTION:
void*
mmap
( void* addr,
size_t
len,
int
prot,
int
flags,
int
fd,
off_t
offset )