os/kernel/address_spaces.h

7 lines
210 B
C
Raw Normal View History

2019-05-05 13:03:14 -05:00
#ifndef ADDRESS_SPACES_H
#define ADDRESS_SPACES_H
2019-05-06 08:35:59 -05:00
void address_spaces_copy_data(void* cr3, void* data,uint32_t size,void* virt_addr);
2019-05-23 20:42:00 -05:00
void* address_spaces_put_data(void* cr3, void* data,uint32_t size);
2019-05-05 13:03:14 -05:00
#endif