1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 07:38:10 +00:00

Kernel: Pass name+length to set_mmap_name() and remove SmapDisabler

This commit is contained in:
Andreas Kling 2020-01-06 11:56:59 +01:00
parent 6af8392cf8
commit 33025a8049
4 changed files with 27 additions and 8 deletions

View file

@ -298,6 +298,13 @@ struct SC_realpath_params {
size_t buffer_size;
};
struct SC_set_mmap_name_params {
void* addr;
size_t size;
const char* name;
size_t name_length;
};
void initialize();
int sync();