musl/include/sys/mman.h

40 lines
725 B
C
Raw Normal View History

2011-02-12 05:22:29 +00:00
#ifndef _SYS_MMAN_H
#define _SYS_MMAN_H
#ifdef __cplusplus
extern "C" {
#endif
#define __NEED_mode_t
#define __NEED_size_t
#define __NEED_off_t
#include <bits/alltypes.h>
#include <bits/mman.h>
void *mmap (void *, size_t, int, int, int, off_t);
int munmap (void *, size_t);
int mprotect (void *, size_t, int);
int msync (void *, size_t, int);
int posix_madvise (void *, size_t, int);
int mlock (const void *, size_t);
int munlock (const void *, size_t);
int mlockall (int);
int munlockall (void);
2011-03-03 05:32:15 +00:00
#ifdef _GNU_SOURCE
2011-02-12 05:22:29 +00:00
void *mremap (void *, size_t, size_t, int, ...);
2011-03-03 05:32:15 +00:00
int madvise (void *, size_t, int);
#endif
2011-02-12 05:22:29 +00:00
int shm_open (const char *, int, mode_t);
int shm_unlink (const char *);
#ifdef __cplusplus
}
#endif
#endif