Changeset 527 for trunk/kernel/kern/process.h
- Timestamp:
- Aug 30, 2018, 10:26:27 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/kernel/kern/process.h
r503 r527 56 56 ********************************************************************************************/ 57 57 58 enum process_sigactions58 typedef enum process_sigactions 59 59 { 60 60 BLOCK_ALL_THREADS = 0x11, 61 61 UNBLOCK_ALL_THREADS = 0x22, 62 62 DELETE_ALL_THREADS = 0x33, 63 } ;63 } process_sigactions_t; 64 64 65 65 /********************************************************************************************* … … 275 275 * @ return a string pointer. 276 276 ********************************************************************************************/ 277 c har * process_action_str( uint32_t sigaction_type );277 const char * process_action_str( process_sigactions_t sigaction_type ); 278 278 279 279 /*********************************************************************************************
Note: See TracChangeset
for help on using the changeset viewer.