This gets rid of the bloated memmap_win32.c in favour of a much simpler wrapper. This will be needed in the future since the wrapper does not support MAP_FIXED maps (necessary for some platforms)
7 lines
132 B
C
7 lines
132 B
C
#ifndef _MEMMAP_H
|
|
#define _MEMMAP_H
|
|
|
|
void *map_jit_block(unsigned size);
|
|
void unmap_jit_block(void *bufptr, unsigned size);
|
|
|
|
#endif
|