Changes in uspace/lib/posix/source/sys/mman.c [0d0b319:6aeca0d] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/posix/source/sys/mman.c
r0d0b319 r6aeca0d 59 59 int posix_munmap(void *start, size_t length) 60 60 { 61 int rc = as_area_destroy(start); 62 if (rc != EOK) { 63 errno = rc; 64 return -1; 65 } 66 return 0; 61 return as_area_destroy(start); 67 62 } 68 63
Note:
See TracChangeset
for help on using the changeset viewer.