aboutsummaryrefslogtreecommitdiff
path: root/sysdeps/unix/sysv/linux/x86_64/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/x86_64/bits/fcntl.h
parentf8d7c1eaddec2ab245dd4920107e273114a9b0e8 (diff)
downloadglibc-78aa397939f403cef61d882f2e76f8c131b9e4d9.zip
glibc-78aa397939f403cef61d882f2e76f8c131b9e4d9.tar.gz
glibc-78aa397939f403cef61d882f2e76f8c131b9e4d9.tar.bz2
Define F_SETOWN_EX and F_GETOWN_EX in Linux headers.
Diffstat (limited to 'sysdeps/unix/sysv/linux/x86_64/bits/fcntl.h')
-rw-r--r--sysdeps/unix/sysv/linux/x86_64/bits/fcntl.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/sysdeps/unix/sysv/linux/x86_64/bits/fcntl.h b/sysdeps/unix/sysv/linux/x86_64/bits/fcntl.h
index bc0f4d6..2041f57 100644
--- a/sysdeps/unix/sysv/linux/x86_64/bits/fcntl.h
+++ b/sysdeps/unix/sysv/linux/x86_64/bits/fcntl.h
@@ -99,13 +99,15 @@
#endif
#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 of SIGIO). */
+# define F_GETOWN 9 /* Set owner (process receiving of 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