diff options
| author | Yury Khrustalev <yury.khrustalev@arm.com> | 2024-11-06 13:05:57 +0000 |
|---|---|---|
| committer | Wilco Dijkstra <wilco.dijkstra@arm.com> | 2024-11-06 13:11:33 +0000 |
| commit | ff254cabd64bec6b6810ee1e1f0c901d273efaca (patch) | |
| tree | ba1093bf9823d0d746ae185faabd5077d4240370 /sysdeps/unix/sysv/linux/pkey_set.c | |
| parent | 0c38c59f75bbfe3eb241fc54e1063e9b4cd2f9a6 (diff) | |
| download | glibc-ff254cabd64bec6b6810ee1e1f0c901d273efaca.tar.xz glibc-ff254cabd64bec6b6810ee1e1f0c901d273efaca.zip | |
misc: Align argument name for pkey_*() functions with the manual
Change name of the access_rights argument to access_restrictions
of the following functions:
- pkey_alloc()
- pkey_set()
as this argument refers to access restrictions rather than access
rights and previous name might have been misleading.
Reviewed-by: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Diffstat (limited to 'sysdeps/unix/sysv/linux/pkey_set.c')
| -rw-r--r-- | sysdeps/unix/sysv/linux/pkey_set.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdeps/unix/sysv/linux/pkey_set.c b/sysdeps/unix/sysv/linux/pkey_set.c index 30463ef89b..9cb14af0ec 100644 --- a/sysdeps/unix/sysv/linux/pkey_set.c +++ b/sysdeps/unix/sysv/linux/pkey_set.c @@ -20,7 +20,7 @@ #include <sys/mman.h> int -__pkey_set (int key, unsigned int access_rights) +__pkey_set (int key, unsigned int access_restrictions) { __set_errno (ENOSYS); return -1; |
