Changeset 486 for trunk/kernel/mm
- Timestamp:
- Aug 21, 2018, 9:53:19 PM (6 years ago)
- Location:
- trunk/kernel/mm
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/kernel/mm/kmem.c
r457 r486 52 52 53 53 /////////////////////////// 54 void kmem_print_kcm_table( )54 void kmem_print_kcm_table( void ) 55 55 { 56 56 uint32_t index; -
trunk/kernel/mm/kmem.h
r457 r486 127 127 * This function displays the content of the KCM pointers Table 128 128 ************************************************************************************/ 129 void kmem_print_kcm_table( );129 void kmem_print_kcm_table( void ); 130 130 131 131 -
trunk/kernel/mm/page.c
r457 r486 128 128 129 129 ///////////////////// 130 void sync_all_pages( )130 void sync_all_pages( void ) 131 131 { 132 132 page_t * page; -
trunk/kernel/mm/page.h
r469 r486 114 114 * It scans the PPM dirty list, that should be empty when this operation is completed. 115 115 ************************************************************************************/ 116 void sync_all_pages( );116 void sync_all_pages( void ); 117 117 118 118 /************************************************************************************* -
trunk/kernel/mm/ppm.c
r457 r486 322 322 323 323 //////////////// 324 void ppm_print( )324 void ppm_print( void ) 325 325 { 326 326 uint32_t order; -
trunk/kernel/mm/ppm.h
r457 r486 165 165 * This function prints the PPM allocator status in the calling thread cluster. 166 166 ****************************************************************************************/ 167 void ppm_print( );167 void ppm_print( void ); 168 168 169 169 /*****************************************************************************************
Note: See TracChangeset
for help on using the changeset viewer.