summaryrefslogtreecommitdiff
path: root/arch/i386
diff options
context:
space:
mode:
authorRich Felker <dalias@aerifal.cx>2012-06-20 22:16:47 -0400
committerRich Felker <dalias@aerifal.cx>2012-06-20 22:16:47 -0400
commit4e8b0938d90793d6e1e200d6b25e6581b72bd4d0 (patch)
treecb0255413023716592eebc9f7978d7c1a1b00179 /arch/i386
parente5fb6820a42a1f675ba09c15273953e1ace65777 (diff)
downloadmusl-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')
-rw-r--r--arch/i386/bits/fcntl.h3
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