Changeset 670 for trunk/kernel/syscalls/sys_exit.c
- Timestamp:
- Nov 19, 2020, 11:45:52 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/kernel/syscalls/sys_exit.c
r664 r670 29 29 #include <printk.h> 30 30 #include <process.h> 31 #include <dev_fbf.h> 31 32 #include <shared_syscalls.h> 32 33 #include <cluster.h> … … 98 99 #endif 99 100 101 // delete all process registered FBF windows 102 dev_fbf_cleanup( pid ); 103 104 #if( DEBUG_SYS_EXIT & 1) 105 if( DEBUG_SYS_EXIT < tm_start ) 106 printk("\n[%s] thread[%x,%x] deleted all FBF windows for process %x\n", 107 __FUNCTION__, pid, this->trdid, pid ); 108 #endif 109 100 110 // mark for delete all process threads in all clusters, 101 111 // but the main thread and this calling thread … … 117 127 __FUNCTION__, pid, this->trdid ); 118 128 #endif 119 thread_delete ( XPTR( local_cxy , this ) , true ); // forced129 thread_delete_request( XPTR( local_cxy , this ) , true ); // forced 120 130 } 121 131
Note: See TracChangeset
for help on using the changeset viewer.