Changeset 14 for trunk/kernel/mm


Ignore:
Timestamp:
May 3, 2017, 1:23:24 PM (7 years ago)
Author:
alain
Message:

Bugs fix.

Location:
trunk/kernel/mm
Files:
8 edited

Legend:

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

    r7 r14  
    2323 */
    2424
    25 #include <almos_config.h>
     25#include <kernel_config.h>
    2626#include <hal_types.h>
    2727#include <hal_special.h>
  • trunk/kernel/mm/khm.c

    r7 r14  
    2323 */
    2424
    25 #include <almos_config.h>
     25#include <kernel_config.h>
    2626#include <hal_types.h>
    2727#include <hal_special.h>
     
    6262        khm->size    = heap_size;
    6363        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() );
    6764}
    6865
  • trunk/kernel/mm/khm.h

    r1 r14  
    2727#define _HEAP_MANAGER_H_
    2828
    29 #include <almos_config.h>
     29#include <kernel_config.h>
    3030#include <hal_types.h>
    3131#include <spinlock.h>
  • trunk/kernel/mm/kmem.c

    r7 r14  
    2424 */
    2525
    26 #include <almos_config.h>
     26#include <kernel_config.h>
    2727#include <hal_types.h>
    2828#include <hal_special.h>
  • trunk/kernel/mm/mapper.c

    r1 r14  
    2323 */
    2424
    25 #include <almos_config.h>
     25#include <kernel_config.h>
    2626#include <hal_types.h>
    2727#include <hal_special.h>
  • trunk/kernel/mm/page.h

    r1 r14  
    2626#define _PAGE_H_
    2727
    28 #include <almos_config.h>
     28#include <kernel_config.h>
    2929#include <hal_types.h>
    3030#include <spinlock.h>
  • trunk/kernel/mm/ppm.c

    r7 r14  
    2323 */
    2424
    25 #include <almos_config.h>
     25#include <kernel_config.h>
    2626#include <hal_types.h>
    2727#include <hal_special.h>
     
    159159        }
    160160
    161 #if( CONFIG_PPM_DEBUG )
    162 ppm_print( ppm , "after reset" );
    163 #endif
    164  
    165161    // initialize dirty_list as empty
    166162    list_root_init( &ppm->dirty_root );
     
    209205    ppm_assert_order( ppm );
    210206
    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 #endif
    217    
    218207} // end ppm_init()
    219208
  • trunk/kernel/mm/vmm.c

    r1 r14  
    2424 */
    2525
    26 #include <almos_config.h>
     26#include <kernel_config.h>
    2727#include <hal_types.h>
    2828#include <hal_special.h>
Note: See TracChangeset for help on using the changeset viewer.