1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 19:07:35 +00:00

Kernel: Add _SC_MAPPED_FILES sysconf API

This is mandated by POSIX, it's fine that we don't actually implement
it, just as long as it's present during compilation. :^)
This commit is contained in:
Brian Gianforcaro 2021-12-28 00:14:45 -08:00 committed by Andreas Kling
parent 4fdff1ba63
commit 904ea56956

View file

@ -39,6 +39,7 @@ enum {
_SC_GETPW_R_SIZE_MAX,
_SC_CLK_TCK,
_SC_SYMLOOP_MAX,
_SC_MAPPED_FILES,
};
#define _SC_MONOTONIC_CLOCK _SC_MONOTONIC_CLOCK
@ -51,6 +52,7 @@ enum {
#define _SC_GETPW_R_SIZE_MAX _SC_GETPW_R_SIZE_MAX
#define _SC_CLK_TCK _SC_CLK_TCK
#define _SC_SYMLOOP_MAX _SC_SYMLOOP_MAX
#define _SC_MAPPED_FILES _SC_MAPPED_FILES
#ifdef __cplusplus
}