Define F_SETOWN_EX and F_GETOWN_EX for MIPS.
authorJoseph Myers <joseph@codesourcery.com>
Sat, 3 Oct 2009 17:39:53 +0000 (17:39 +0000)
committerJoseph Myers <joseph@codesourcery.com>
Sat, 3 Oct 2009 17:39:53 +0000 (17:39 +0000)
* sysdeps/unix/sysv/linux/mips/bits/fcntl.h: Define F_SETOWN_EX
and F_GETOWN_EX.

ChangeLog.mips
sysdeps/unix/sysv/linux/mips/bits/fcntl.h

index f8a651d..370c9c7 100644 (file)
@@ -1,3 +1,8 @@
+2009-10-03  Joseph Myers  <joseph@codesourcery.com>
+
+       * sysdeps/unix/sysv/linux/mips/bits/fcntl.h: Define F_SETOWN_EX
+       and F_GETOWN_EX.
+
 2009-09-25  Daniel Jacobowitz  <dan@codesourcery.com>
 
        * sysdeps/unix/sysv/linux/mips/mips32/sysdep.h
index ef84e96..e2c714b 100644 (file)
@@ -1,6 +1,6 @@
 /* O_*, F_*, FD_* bit values for Linux.
-   Copyright (C) 1995, 1996, 1997, 1998, 2000, 2002, 2003, 2004, 2006, 2007
-       Free Software Foundation, Inc.
+   Copyright (C) 1995, 1996, 1997, 1998, 2000, 2002, 2003, 2004, 2006,
+   2007, 2009 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
 #define F_SETLKW64     35      /* Set record locking info (blocking).  */
 
 #if defined __USE_BSD || defined __USE_UNIX98
-# define F_SETOWN      24      /* Get owner of socket (receiver of SIGIO).  */
-# define F_GETOWN      23      /* Set owner of socket (receiver of SIGIO).  */
+# define F_SETOWN      24      /* Get owner (process receiving SIGIO).  */
+# define F_GETOWN      23      /* Set owner (process receiving SIGIO).  */
 #endif
 
 #ifdef __USE_GNU
 # define F_SETSIG      10      /* Set number of signal to be sent.  */
 # define F_GETSIG      11      /* Get number of signal to be sent.  */
+# define F_SETOWN_EX   12      /* Get owner (thread receiving SIGIO).  */
+# define F_GETOWN_EX   13      /* Set owner (thread receiving SIGIO).  */
 #endif
 
 #ifdef __USE_GNU