diff options
| author | Joseph Myers <joseph@codesourcery.com> | 2009-11-19 16:46:16 +0000 |
|---|---|---|
| committer | Joseph Myers <joseph@codesourcery.com> | 2009-11-19 16:46:16 +0000 |
| commit | bc97817ff608f75d67a61cb8fe3fe13e84fde985 (patch) | |
| tree | db9e311699bb63a9d13a8fc2676cff61639c3e94 | |
| parent | 3a2e1f4e6a8a1d5523ebae4a1b938fdaf92e94bf (diff) | |
| download | glibc-bc97817ff608f75d67a61cb8fe3fe13e84fde985.tar.xz glibc-bc97817ff608f75d67a61cb8fe3fe13e84fde985.zip | |
Define F_OWNER_PGRP for ARM.
| -rw-r--r-- | ChangeLog.arm | 5 | ||||
| -rw-r--r-- | sysdeps/unix/sysv/linux/arm/bits/fcntl.h | 7 |
2 files changed, 9 insertions, 3 deletions
diff --git a/ChangeLog.arm b/ChangeLog.arm index e095c22c76..c20b095226 100644 --- a/ChangeLog.arm +++ b/ChangeLog.arm @@ -1,5 +1,10 @@ 2009-11-19 Joseph Myers <joseph@codesourcery.com> + * sysdeps/unix/sysv/linux/arm/bits/fcntl.h: Introduce new symbol + F_OWNER_PGRP and mark F_OWNER_GID obsolete. + +2009-11-19 Joseph Myers <joseph@codesourcery.com> + * sysdeps/unix/sysv/linux/arm/kernel-features.h (__ASSUME_PSELECT, __ASSUME_PPOLL): Don't undefine for kernel 2.6.32 and later. diff --git a/sysdeps/unix/sysv/linux/arm/bits/fcntl.h b/sysdeps/unix/sysv/linux/arm/bits/fcntl.h index 6993cb8587..d597c10139 100644 --- a/sysdeps/unix/sysv/linux/arm/bits/fcntl.h +++ b/sysdeps/unix/sysv/linux/arm/bits/fcntl.h @@ -172,9 +172,10 @@ struct flock64 /* Owner types. */ enum __pid_type { - F_OWNER_TID = 0, /* Kernel thread. */ - F_OWNER_PID, /* Process. */ - F_OWNER_GID /* Process group. */ + F_OWNER_TID = 0, /* Kernel thread. */ + F_OWNER_PID, /* Process. */ + F_OWNER_PGRP, /* Process group. */ + F_OWNER_GID = F_OWNER_PGRP /* Alternative, obsolete name. */ }; /* Structure to use with F_GETOWN_EX and F_SETOWN_EX. */ |
