Define F_OWNER_PGRP for MIPS.

This commit is contained in:
Joseph Myers 2009-11-19 16:46:57 +00:00
parent bc97817ff6
commit 78698bbbf1
2 changed files with 9 additions and 3 deletions

View 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

View file

@ -187,7 +187,8 @@ enum __pid_type
{
F_OWNER_TID = 0, /* Kernel thread. */
F_OWNER_PID, /* Process. */
F_OWNER_GID /* Process group. */
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. */