about summary refs log tree commit diff
path: root/sysdeps/unix/sysv/linux/ia64/bits/fcntl.h
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2009-10-01 01:18:41 -0700
committerUlrich Drepper <drepper@redhat.com>2009-10-01 01:18:41 -0700
commit78aa397939f403cef61d882f2e76f8c131b9e4d9 (patch)
tree7d482d4dcd3baf95a0cf9baa67d2aab3ef4ffc72 /sysdeps/unix/sysv/linux/ia64/bits/fcntl.h
parentf8d7c1eaddec2ab245dd4920107e273114a9b0e8 (diff)
downloadglibc-78aa397939f403cef61d882f2e76f8c131b9e4d9.tar.gz
glibc-78aa397939f403cef61d882f2e76f8c131b9e4d9.tar.xz
glibc-78aa397939f403cef61d882f2e76f8c131b9e4d9.zip
Define F_SETOWN_EX and F_GETOWN_EX in Linux headers.
Diffstat (limited to 'sysdeps/unix/sysv/linux/ia64/bits/fcntl.h')
-rw-r--r--sysdeps/unix/sysv/linux/ia64/bits/fcntl.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/sysdeps/unix/sysv/linux/ia64/bits/fcntl.h b/sysdeps/unix/sysv/linux/ia64/bits/fcntl.h
index 6abc5ced65..b0af8697f8 100644
--- a/sysdeps/unix/sysv/linux/ia64/bits/fcntl.h
+++ b/sysdeps/unix/sysv/linux/ia64/bits/fcntl.h
@@ -81,13 +81,15 @@
 #define F_SETLKW64	7	/* Set record locking info (blocking).	*/
 
 #if defined __USE_BSD || defined __USE_UNIX98
-# define F_SETOWN	8	/* Get owner of socket (receiver of SIGIO).  */
-# define F_GETOWN	9	/* Set owner of socket (receiver of SIGIO).  */
+# define F_SETOWN	8	/* Get owner (process receiving SIGIO).  */
+# define F_GETOWN	9	/* 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