diff options
| author | Joseph Myers <joseph@codesourcery.com> | 2009-11-19 22:34:08 +0000 |
|---|---|---|
| committer | Joseph Myers <joseph@codesourcery.com> | 2009-11-19 22:34:08 +0000 |
| commit | 76d306ec9888f824496ea7783266ea91e6825374 (patch) | |
| tree | 880bb4b570d4d573fc1dc3a630d8bc0db8c07d7a | |
| parent | 78698bbbf1d98a923cfc5ad284df935cc64a0a5e (diff) | |
| download | glibc-76d306ec9888f824496ea7783266ea91e6825374.tar.xz glibc-76d306ec9888f824496ea7783266ea91e6825374.zip | |
Define F_OWNER_PGRP for M68K.
| -rw-r--r-- | ChangeLog.m68k | 5 | ||||
| -rw-r--r-- | sysdeps/unix/sysv/linux/m68k/bits/fcntl.h | 7 |
2 files changed, 9 insertions, 3 deletions
diff --git a/ChangeLog.m68k b/ChangeLog.m68k index 87117d3dc1..74407c4c3e 100644 --- a/ChangeLog.m68k +++ b/ChangeLog.m68k @@ -1,3 +1,8 @@ +2009-11-19 Joseph Myers <joseph@codesourcery.com> + + * sysdeps/unix/sysv/linux/m68k/bits/fcntl.h: Introduce new symbol + F_OWNER_PGRP and mark F_OWNER_GID obsolete. + 2009-11-18 Joseph Myers <joseph@codesourcery.com> * sysdeps/unix/sysv/linux/m68k/bits/fcntl.h: Change misleading diff --git a/sysdeps/unix/sysv/linux/m68k/bits/fcntl.h b/sysdeps/unix/sysv/linux/m68k/bits/fcntl.h index c6dd1a8352..8ed8eb6c31 100644 --- a/sysdeps/unix/sysv/linux/m68k/bits/fcntl.h +++ b/sysdeps/unix/sysv/linux/m68k/bits/fcntl.h @@ -171,9 +171,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. */ |
