diff options
| author | Christian Brauner <brauner@kernel.org> | 2025-06-24 16:48:49 +0300 |
|---|---|---|
| committer | Christian Brauner <brauner@kernel.org> | 2025-06-24 16:50:15 +0300 |
| commit | 67fcec2919e4ed31ab845eb456ad7d6f1e85505c (patch) | |
| tree | fea8f468052beb508444cb54c6f58492dbf06f74 /include/uapi/linux | |
| parent | a4c746f06853f91d3759ae8aca514d135b6aa56d (diff) | |
| download | linux-67fcec2919e4ed31ab845eb456ad7d6f1e85505c.tar.xz | |
fcntl/pidfd: redefine PIDFD_SELF_THREAD_GROUP
Don't jump somewhere into the middle of the reserved range. We're still
able to change that value it won't be that widely used yet. If not, we
can revert.
Signed-off-by: Christian Brauner <brauner@kernel.org>
Diffstat (limited to 'include/uapi/linux')
| -rw-r--r-- | include/uapi/linux/fcntl.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/uapi/linux/fcntl.h b/include/uapi/linux/fcntl.h index ed02d8ae0667..ba4a698d2f33 100644 --- a/include/uapi/linux/fcntl.h +++ b/include/uapi/linux/fcntl.h @@ -108,7 +108,7 @@ * group leader... */ #define PIDFD_SELF_THREAD -10000 /* Current thread. */ -#define PIDFD_SELF_THREAD_GROUP -20000 /* Current thread group leader. */ +#define PIDFD_SELF_THREAD_GROUP -10001 /* Current thread group leader. */ /* Generic flags for the *at(2) family of syscalls. */ |
