ns-3 Direct Code Execution
API
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
dce-mman.h
Go to the documentation of this file.
1 #ifndef DCE_MMAN_H
2 #define DCE_MMAN_H
3 
4 
5 #ifdef __cplusplus
6 extern "C" {
7 #endif
8 
9 void * dce_mmap (void *start, size_t length, int prot, int flags,
10  int fd, off_t offset);
11 void * dce_mmap64 (void *start, size_t length, int prot, int flags,
12  int fd, off64_t offset);
13 int dce_munmap (void *start, size_t length);
14 
15 #ifdef __cplusplus
16 }
17 #endif
18 
19 #endif /* DCE_MMAN_H */