X-Git-Url: http://git.efficios.com/?a=blobdiff_plain;f=src%2Fcompat%2Fmman.h;h=bdab9d1903fbab5e08227f4d498cef8de69050c3;hb=c8d7667fa0b7228a1d6a4b385cb717ab203bd650;hp=9f494526617469f5292a7341ee803a5ab26c9cda;hpb=2e3c8ba57a6ae691a5732349440c07d659c14f5d;p=babeltrace.git diff --git a/src/compat/mman.h b/src/compat/mman.h index 9f494526..bdab9d19 100644 --- a/src/compat/mman.h +++ b/src/compat/mman.h @@ -46,7 +46,7 @@ * mappings to exceed the file's size (even within a page). */ void *bt_mmap(void *addr, size_t length, int prot, int flags, int fd, - off_t offset); + off_t offset, int log_level); int bt_munmap(void *addr, size_t length); @@ -56,7 +56,7 @@ int bt_munmap(void *addr, size_t length); static inline void *bt_mmap(void *addr, size_t length, int prot, int flags, int fd, - off_t offset) + off_t offset, int log_level) { return (void *) mmap(addr, length, prot, flags, fd, offset); }