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

LibC: Define F_GETLK

This commit is contained in:
Jelle Raaijmakers 2021-03-27 12:34:42 +01:00 committed by Andreas Kling
parent ff32002f2b
commit 2fb3c98429

View file

@ -97,6 +97,7 @@ int watch_file(const char* path, size_t path_length);
#define F_RDLCK 0 #define F_RDLCK 0
#define F_WRLCK 1 #define F_WRLCK 1
#define F_UNLCK 2 #define F_UNLCK 2
#define F_GETLK 5
#define F_SETLK 6 #define F_SETLK 6
#define F_SETLKW 7 #define F_SETLKW 7