Changeset 664 for trunk/kernel/syscalls/sys_write.c
- Timestamp:
- Oct 10, 2020, 5:11:27 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/kernel/syscalls/sys_write.c
r656 r664 82 82 83 83 #if (DEBUG_SYS_WRITE & 1) 84 if( DEBUG_SYS_WRITE < tm_start ) 84 85 enter_sys_write = (uint32_t)tm_start; 85 86 #endif … … 112 113 113 114 // get extended pointer on remote file descriptor 114 file_xp = process_fd_get_xptr ( process , file_id );115 file_xp = process_fd_get_xptr_from_local( process , file_id ); 115 116 116 117 if( file_xp == XPTR_NULL ) … … 215 216 216 217 #if (DEBUG_SYS_WRITE & 1) 218 if( DEBUG_SYS_WRITE < tm_start ) 217 219 exit_sys_write = (uint32_t)tm_end; 218 220 221 if( DEBUG_SYS_WRITE < tm_start ) 219 222 printk("\n***** timing to write a string *****\n" 220 223 " - enter_sys_write = %d / delta %d\n"
Note: See TracChangeset
for help on using the changeset viewer.