Changeset 566 for trunk/kernel/syscalls/sys_fg.c
- Timestamp:
- Oct 4, 2018, 11:50:21 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/kernel/syscalls/sys_fg.c
r506 r566 75 75 76 76 // get extended pointer on the reference process STDIN file descriptor 77 file_xp = hal_remote_l wd( XPTR( process_cxy , &process_ptr->fd_array.array[0] ) );77 file_xp = hal_remote_l64( XPTR( process_cxy , &process_ptr->fd_array.array[0] ) ); 78 78 79 79 // get extended pointer on TXT_RX chdev … … 85 85 86 86 // set reference process owner in TXT_RX chdev 87 hal_remote_s wd( XPTR( chdev_cxy , &chdev_ptr->ext.txt.owner_xp ) , process_xp );87 hal_remote_s64( XPTR( chdev_cxy , &chdev_ptr->ext.txt.owner_xp ) , process_xp ); 88 88 89 89 // reset PROCESS_TERM_WAIT and PROCESS_TERM_STOP flags in process term_state … … 98 98 printk("\n[DBG] %s : thread %x exit / process %x get TXT_%d ownership / cycle %d\n", 99 99 __FUNCTION__ , CURRENT_THREAD , pid, 100 hal_remote_l w( XPTR( chdev_cxy , &chdev_ptr->channel ) ) , (uint32_t)tm_end );100 hal_remote_l32( XPTR( chdev_cxy , &chdev_ptr->channel ) ) , (uint32_t)tm_end ); 101 101 #endif 102 102
Note: See TracChangeset
for help on using the changeset viewer.