2012-02-06 00:16:59 +04:00
|
|
|
/* vim: tabstop=4 shiftwidth=4 noexpandtab
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef __MEM_H
|
|
|
|
#define __MEM_H
|
|
|
|
|
|
|
|
#include <types.h>
|
|
|
|
|
|
|
|
|
|
|
|
extern uintptr_t heap_end;
|
|
|
|
|
|
|
|
extern void set_frame(uintptr_t frame_addr);
|
|
|
|
extern void clear_frame(uintptr_t frame_addr);
|
|
|
|
extern uint32_t test_frame(uintptr_t frame_addr);
|
2013-06-06 10:10:36 +04:00
|
|
|
extern uint32_t first_frame(void);
|
2012-02-06 00:16:59 +04:00
|
|
|
|
|
|
|
|
|
|
|
#endif
|