From 5e417de5a967098bb99295ba62a2ec9b6feb4fd8 Mon Sep 17 00:00:00 2001 From: notaz Date: Tue, 28 Aug 2012 22:55:20 +0000 Subject: [PATCH] add mmap prototypes git-svn-id: file:///home/notaz/opt/svn/PicoDrive/platform@959 be3aeb3a-fb24-0410-a615-afba39da0efa --- common/plat.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/common/plat.h b/common/plat.h index 0a9fc0b..1fb8767 100644 --- a/common/plat.h +++ b/common/plat.h @@ -45,6 +45,10 @@ int plat_is_dir(const char *path); int plat_wait_event(int *fds_hnds, int count, int timeout_ms); void plat_sleep_ms(int ms); +void *plat_mmap(unsigned long addr, size_t size, int need_exec, int is_fixed); +void *plat_mremap(void *ptr, size_t oldsize, size_t newsize); +void plat_munmap(void *ptr, size_t size); + /* timers, to be used for time diff and must refer to the same clock */ unsigned int plat_get_ticks_ms(void); unsigned int plat_get_ticks_us(void); -- 2.39.2