Subversion Repositories Kolibri OS

Compare Revisions

Regard whitespace Rev 887 → Rev 888

/kernel/branches/kolibri_pe/include/core.h
30,6 → 30,13
 
# define DBG(format,...)
 
# define PANIC(expr) \
if (!(expr)) { \
panic_printf("Kernel panic in %s() at %s:%u: " \
"assertion failed (%s)",__func__ ,__FILE__,__LINE__, \
#expr); \
};
 
#endif
 
 
/kernel/branches/kolibri_pe/include/mm.h
71,4 → 71,4
void __fastcall frame_set_parent(pfn_t pfn, void *data);
void* __fastcall frame_get_parent(pfn_t pfn);
 
void* __fastcall heap_alloc(size_t size, u32_t flags) ;
void* __fastcall mem_alloc(size_t size, u32_t flags) ;