Changeset 767 for soft/giet_vm
- Timestamp:
- Jan 20, 2016, 10:12:04 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
soft/giet_vm/giet_libs/stdio.c
r766 r767 1134 1134 unsigned int length ) 1135 1135 { 1136 if ( length & 0xFFF ) giet_pthread_exit("error in giet_fat_m map()");1137 if ( (unsigned int)vaddr & 0xFFF ) giet_pthread_exit("error in giet_fat_m map()");1138 1139 return sys_call( SYSCALL_FAT_M MAP,1136 if ( length & 0xFFF ) giet_pthread_exit("error in giet_fat_munmap()"); 1137 if ( (unsigned int)vaddr & 0xFFF ) giet_pthread_exit("error in giet_fat_munmap()"); 1138 1139 return sys_call( SYSCALL_FAT_MUNMAP, 1140 1140 (unsigned int)vaddr, 1141 1141 length>>12,
Note: See TracChangeset
for help on using the changeset viewer.