- Timestamp:
- 10/14/08 18:41:35 (1 month ago)
- Files:
-
- 1 modified
-
Whitix/branches/keobject/user/posix/memory/mem.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
Whitix/branches/keobject/user/posix/memory/mem.c
r910 r1121 11 11 void* mmap(void* start, size_t length, int prot, int flags, int fd, off_t offset) 12 12 { 13 unsigned long ret=SysMemoryMap((unsigned long)start, length, prot | 7, fd, offset, flags);13 unsigned long ret=SysMemoryMap((unsigned long)start, length, prot, fd, offset, flags); 14 14 15 15 if (!ret)
