Changeset 566 for trunk/kernel/syscalls/sys_thread_detach.c
- Timestamp:
- Oct 4, 2018, 11:50:21 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/kernel/syscalls/sys_thread_detach.c
r506 r566 48 48 49 49 // check trdid argument 50 if( (target_ltid >= CONFIG_THREAD _MAX_PER_CLUSTER) || cluster_is_undefined( target_cxy ) )50 if( (target_ltid >= CONFIG_THREADS_MAX_PER_CLUSTER) || cluster_is_undefined( target_cxy ) ) 51 51 { 52 52 printk("\n[ERROR] in %s : illegal trdid argument\n", __FUNCTION__ ); … … 69 69 70 70 // get target thread flags 71 flags = hal_remote_l w( XPTR( target_cxy , &target_ptr->flags ) );71 flags = hal_remote_l32( XPTR( target_cxy , &target_ptr->flags ) ); 72 72 73 73 // check target thread joinable
Note: See TracChangeset
for help on using the changeset viewer.