diff options
author | Rich Felker <dalias@aerifal.cx> | 2012-06-20 22:16:47 -0400 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2012-06-20 22:16:47 -0400 |
commit | 4e8b0938d90793d6e1e200d6b25e6581b72bd4d0 (patch) | |
tree | cb0255413023716592eebc9f7978d7c1a1b00179 /arch/i386/bits | |
parent | e5fb6820a42a1f675ba09c15273953e1ace65777 (diff) | |
download | musl-4e8b0938d90793d6e1e200d6b25e6581b72bd4d0.tar.gz |
proper error handling for fcntl F_GETOWN on modern kernels
on old kernels, there's no way to detect errors; we must assume
negative syscall return values are pgrp ids. but if the F_GETOWN_EX
fcntl works, we can get a reliable answer.
Diffstat (limited to 'arch/i386/bits')
-rw-r--r-- | arch/i386/bits/fcntl.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/i386/bits/fcntl.h b/arch/i386/bits/fcntl.h index 7f09b95c..69f3a8f5 100644 --- a/arch/i386/bits/fcntl.h +++ b/arch/i386/bits/fcntl.h @@ -31,3 +31,6 @@ #define F_GETLK 12 #define F_SETLK 13 #define F_SETLKW 14 + +#define F_SETOWN_EX 15 +#define F_GETOWN_EX 16 |