Changeset 486 for trunk


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

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

Location:
trunk/kernel/mm
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • trunk/kernel/mm/kmem.c

    r457 r486  
    5252
    5353///////////////////////////
    54 void kmem_print_kcm_table()
     54void kmem_print_kcm_table( void )
    5555{
    5656        uint32_t    index;
  • trunk/kernel/mm/kmem.h

    r457 r486  
    127127 * This function displays the content of the KCM pointers Table
    128128 ************************************************************************************/
    129 void kmem_print_kcm_table();
     129void kmem_print_kcm_table( void );
    130130
    131131
  • trunk/kernel/mm/page.c

    r457 r486  
    128128
    129129/////////////////////
    130 void sync_all_pages()
     130void sync_all_pages( void )
    131131{
    132132        page_t   * page;
  • trunk/kernel/mm/page.h

    r469 r486  
    114114 * It scans the PPM dirty list, that should be empty when this operation is completed.
    115115 ************************************************************************************/
    116 void sync_all_pages();
     116void sync_all_pages( void );
    117117
    118118/*************************************************************************************
  • trunk/kernel/mm/ppm.c

    r457 r486  
    322322
    323323////////////////
    324 void ppm_print()
     324void ppm_print( void )
    325325{
    326326        uint32_t       order;
  • trunk/kernel/mm/ppm.h

    r457 r486  
    165165 * This function prints the PPM allocator status in the calling thread cluster.
    166166 ****************************************************************************************/
    167 void ppm_print();
     167void ppm_print( void );
    168168
    169169/*****************************************************************************************
Note: See TracChangeset for help on using the changeset viewer.