1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-08-01 10:06:57 +03:00

Define F_SETOWN_EX and F_GETOWN_EX in Linux headers.

This commit is contained in:
Ulrich Drepper
2009-10-01 01:18:41 -07:00
parent f8d7c1eadd
commit 78aa397939
8 changed files with 39 additions and 14 deletions

View File

@ -100,13 +100,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 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