Changeset 765 for soft/giet_vm
- Timestamp:
- Jan 19, 2016, 4:20:25 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
soft/giet_vm/giet_libs/stdio.c
r759 r765 1130 1130 } 1131 1131 1132 /////////////////////////////////////////// 1133 int giet_fat_munmap( void* vaddr, 1134 unsigned int length ) 1135 { 1136 if ( length & 0xFFF ) giet_pthread_exit("error in giet_fat_mmap()"); 1137 if ( vaddr & 0xFFF ) giet_pthread_exit("error in giet_fat_mmap()"); 1138 1139 return sys_call( SYSCALL_FAT_MMAP, 1140 (unsigned int)vaddr, 1141 length>>12, 1142 0, 0 ); 1143 } 1132 1144 1133 1145 //////////////////////////////////////////////////////////////////////////////////
Note: See TracChangeset
for help on using the changeset viewer.