Hi, mmap(2) currently reads: offset must be a multiple of the page size as returned by sysconf(_SC_PAGE_SIZE). Yet sysconf(3) only advertise a _SC_PAGESIZE variable, so I think mmap(2) should be corrected to: offset must be a multiple of the page size as returned by sysconf(_SC_PAGESIZE). Thanks, -- Hugues