Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

abis/linux: Add some defines needed for systemd #1198

Merged
merged 1 commit into from
Dec 31, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions abis/linux/fcntl.h
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,9 @@

#define F_GETOWNER_UIDS 17

#define F_SETLEASE 1024
#define F_GETLEASE 1025
#define F_NOTIFY 1026
#define F_DUPFD_CLOEXEC 1030
#define F_ADD_SEALS 1033
#define F_GET_SEALS 1034
Expand Down Expand Up @@ -86,6 +89,8 @@ struct f_owner_ex {
pid_t pid;
};

#define F_OWNER_TID 0

#define POSIX_FADV_NORMAL 0
#define POSIX_FADV_RANDOM 1
#define POSIX_FADV_SEQUENTIAL 2
Expand Down
1 change: 1 addition & 0 deletions abis/linux/ino_t.h
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
#include <bits/types.h>

typedef __mlibc_uint64 ino_t;
typedef ino_t ino64_t;

#endif /* _ABIBITS_INO_T_H */

Loading