Changeset 485 for trunk/kernel/kern/thread.c
- Timestamp:
- Aug 21, 2018, 9:52:57 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/kernel/kern/thread.c
r473 r485 71 71 // @ return pointer on thread descriptor if success / return NULL if failure. 72 72 ///////////////////////////////////////////////////////////////////////////////////// 73 static thread_t * thread_alloc( )73 static thread_t * thread_alloc( void ) 74 74 { 75 75 page_t * page; // pointer on page descriptor containing thread descriptor … … 896 896 897 897 ///////////////////////// 898 void thread_check_sched( )898 void thread_check_sched( void ) 899 899 { 900 900 thread_t * this = CURRENT_THREAD; … … 1086 1086 1087 1087 /////////////////////// 1088 void thread_idle_func( )1088 void thread_idle_func( void ) 1089 1089 { 1090 1090
Note: See TracChangeset
for help on using the changeset viewer.