Ignore:
Timestamp:
Aug 21, 2018, 9:52:57 PM (6 years ago)
Author:
viala@…
Message:

[kern] Add void type to function prototypes with no parameter

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/kernel/kern/thread.c

    r473 r485  
    7171// @ return pointer on thread descriptor if success / return NULL if failure.
    7272/////////////////////////////////////////////////////////////////////////////////////
    73 static thread_t * thread_alloc()
     73static thread_t * thread_alloc( void )
    7474{
    7575        page_t       * page;   // pointer on page descriptor containing thread descriptor
     
    896896
    897897/////////////////////////
    898 void thread_check_sched()
     898void thread_check_sched( void )
    899899{
    900900    thread_t * this = CURRENT_THREAD;
     
    10861086
    10871087///////////////////////
    1088 void thread_idle_func()
     1088void thread_idle_func( void )
    10891089{
    10901090
Note: See TracChangeset for help on using the changeset viewer.