Changeset a46da63 in mainline for libc/generic/mmap.c
- Timestamp:
- 2006-06-16T20:50:51Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 153a209
- Parents:
- b34fab6
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
libc/generic/mmap.c
rb34fab6 ra46da63 27 27 */ 28 28 29 29 /** @addtogroup libc 30 30 * @{ 31 31 */ … … 37 37 #include <unistd.h> 38 38 39 void *mmap(void *start, size_t length, int prot, int flags, int fd, 40 off_t offset) 39 void *mmap(void *start, size_t length, int prot, int flags, int fd, off_t offset) 41 40 { 42 int rc;43 44 41 if (!start) 45 42 start = as_get_mappable_page(length); … … 59 56 60 57 61 58 /** @} 62 59 */ 63 64
Note:
See TracChangeset
for help on using the changeset viewer.