]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
Define F_OWNER_PGRP for MIPS.
authorJoseph Myers <joseph@codesourcery.com>
Thu, 19 Nov 2009 16:46:57 +0000 (16:46 +0000)
committerJoseph Myers <joseph@codesourcery.com>
Thu, 19 Nov 2009 16:46:57 +0000 (16:46 +0000)
ChangeLog.mips
sysdeps/unix/sysv/linux/mips/bits/fcntl.h

index 88506b2bacfe7b77405e28f0710c081137badb2a..1671dcbee2817a7020b8c6160353402df5e5201f 100644 (file)
@@ -1,3 +1,8 @@
+2009-11-19  Joseph Myers  <joseph@codesourcery.com>
+
+       * sysdeps/unix/sysv/linux/mips/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/mips/bits/fcntl.h: Change misleading
index 43bc86def55ae56202b2e8ff3bae1ef71303c76c..5496912b7a73cae68b70f590b3d17cd667cdaf40 100644 (file)
@@ -185,9 +185,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.  */