Changeset 14 for trunk/kernel/mm
- Timestamp:
- May 3, 2017, 1:23:24 PM (8 years ago)
- Location:
- trunk/kernel/mm
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/kernel/mm/kcm.c
r7 r14 23 23 */ 24 24 25 #include < almos_config.h>25 #include <kernel_config.h> 26 26 #include <hal_types.h> 27 27 #include <hal_special.h> -
trunk/kernel/mm/khm.c
r7 r14 23 23 */ 24 24 25 #include < almos_config.h>25 #include <kernel_config.h> 26 26 #include <hal_types.h> 27 27 #include <hal_special.h> … … 62 62 khm->size = heap_size; 63 63 khm->next = (intptr_t)heap_base; 64 65 kinit_dmsg("\n[INFO] %s done in cluster %x at cycle %d\n",66 __FUNCTION__ , local_cxy , hal_time_stamp() );67 64 } 68 65 -
trunk/kernel/mm/khm.h
r1 r14 27 27 #define _HEAP_MANAGER_H_ 28 28 29 #include < almos_config.h>29 #include <kernel_config.h> 30 30 #include <hal_types.h> 31 31 #include <spinlock.h> -
trunk/kernel/mm/kmem.c
r7 r14 24 24 */ 25 25 26 #include < almos_config.h>26 #include <kernel_config.h> 27 27 #include <hal_types.h> 28 28 #include <hal_special.h> -
trunk/kernel/mm/mapper.c
r1 r14 23 23 */ 24 24 25 #include < almos_config.h>25 #include <kernel_config.h> 26 26 #include <hal_types.h> 27 27 #include <hal_special.h> -
trunk/kernel/mm/page.h
r1 r14 26 26 #define _PAGE_H_ 27 27 28 #include < almos_config.h>28 #include <kernel_config.h> 29 29 #include <hal_types.h> 30 30 #include <spinlock.h> -
trunk/kernel/mm/ppm.c
r7 r14 23 23 */ 24 24 25 #include < almos_config.h>25 #include <kernel_config.h> 26 26 #include <hal_types.h> 27 27 #include <hal_special.h> … … 159 159 } 160 160 161 #if( CONFIG_PPM_DEBUG )162 ppm_print( ppm , "after reset" );163 #endif164 165 161 // initialize dirty_list as empty 166 162 list_root_init( &ppm->dirty_root ); … … 209 205 ppm_assert_order( ppm ); 210 206 211 kinit_dmsg("\n[INFO] %s : done in cluster %x at cycle %d\n",212 __FUNCTION__ , local_cxy , hal_time_stamp() );213 214 #if( CONFIG_PPM_DEBUG )215 ppm_print( ppm , "after init" );216 #endif217 218 207 } // end ppm_init() 219 208 -
trunk/kernel/mm/vmm.c
r1 r14 24 24 */ 25 25 26 #include < almos_config.h>26 #include <kernel_config.h> 27 27 #include <hal_types.h> 28 28 #include <hal_special.h>
Note: See TracChangeset
for help on using the changeset viewer.