mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-21 23:20:20 +00:00
LibCore/System: Add mmap, munmap for Windows
This commit is contained in:
parent
d6bcd3fb0b
commit
91fbb26c03
4 changed files with 28 additions and 0 deletions
|
@ -22,6 +22,10 @@ serenity_lib(LibCoreMinimal coreminimal)
|
||||||
if (WIN32)
|
if (WIN32)
|
||||||
find_path(DIRENT_INCLUDE_DIR dirent.h REQUIRED)
|
find_path(DIRENT_INCLUDE_DIR dirent.h REQUIRED)
|
||||||
target_include_directories(LibCoreMinimal PRIVATE ${DIRENT_INCLUDE_DIR})
|
target_include_directories(LibCoreMinimal PRIVATE ${DIRENT_INCLUDE_DIR})
|
||||||
|
|
||||||
|
find_package(mman REQUIRED)
|
||||||
|
target_include_directories(LibCoreMinimal PRIVATE ${MMAN_INCLUDE_DIR})
|
||||||
|
target_link_libraries(LibCoreMinimal PRIVATE ${MMAN_LIBRARY})
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
if (LAGOM_TOOLS_ONLY)
|
if (LAGOM_TOOLS_ONLY)
|
||||||
|
|
|
@ -15,6 +15,7 @@
|
||||||
#include <Windows.h>
|
#include <Windows.h>
|
||||||
#include <direct.h>
|
#include <direct.h>
|
||||||
#include <io.h>
|
#include <io.h>
|
||||||
|
#include <sys/mman.h>
|
||||||
|
|
||||||
namespace Core::System {
|
namespace Core::System {
|
||||||
|
|
||||||
|
@ -166,4 +167,21 @@ ErrorOr<struct stat> fstatat(int, StringView, int)
|
||||||
VERIFY_NOT_REACHED();
|
VERIFY_NOT_REACHED();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
ErrorOr<void*> mmap(void* address, size_t size, int protection, int flags, int fd, off_t offset, size_t alignment, StringView)
|
||||||
|
{
|
||||||
|
// custom alignment is not supported
|
||||||
|
VERIFY(!alignment);
|
||||||
|
void* ptr = ::mmap(address, size, protection, flags, fd, offset);
|
||||||
|
if (ptr == MAP_FAILED)
|
||||||
|
return Error::from_syscall("mmap"sv, -errno);
|
||||||
|
return ptr;
|
||||||
|
}
|
||||||
|
|
||||||
|
ErrorOr<void> munmap(void* address, size_t size)
|
||||||
|
{
|
||||||
|
if (::munmap(address, size) < 0)
|
||||||
|
return Error::from_syscall("munmap"sv, -errno);
|
||||||
|
return {};
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
2
Meta/CMake/Findmman.cmake
Normal file
2
Meta/CMake/Findmman.cmake
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
find_path(MMAN_INCLUDE_DIR sys/mman.h PATH_SUFFIXES mman)
|
||||||
|
find_library(MMAN_LIBRARY mman)
|
|
@ -71,6 +71,10 @@
|
||||||
"simd"
|
"simd"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "mman",
|
||||||
|
"platform": "windows"
|
||||||
|
},
|
||||||
"simdutf",
|
"simdutf",
|
||||||
{
|
{
|
||||||
"name": "skia",
|
"name": "skia",
|
||||||
|
|
Loading…
Reference in a new issue