Files
codezero/include/l4/generic/bootmem.h
Bahadir Balban caa7ac0764 Put cinfo array into initdata section. Added more precision in bootmem
cinfo array is now freed along with other init memory.
bootmem allocator memory is reduced to be completely used up.
free boot memory now prints the used free memory as well.
2009-11-21 13:35:53 +02:00

15 lines
269 B
C

/*
* Copyright (C) 2009 Bahadir Balban
*/
#ifndef __BOOTMEM_H__
#define __BOOTMEM_H__
unsigned long bootmem_free_pages(void);
void *alloc_bootmem(int size, int alignment);
pmd_table_t *alloc_boot_pmd(void);
extern pgd_table_t init_pgd;
#endif /* __BOOTMEM_H__ */