aboutsummaryrefslogtreecommitdiffstats
path: root/extras/mini-os/include
diff options
context:
space:
mode:
authorKeir Fraser <keir.fraser@citrix.com>2008-07-09 16:00:05 +0100
committerKeir Fraser <keir.fraser@citrix.com>2008-07-09 16:00:05 +0100
commit087adc9638f0641d678414c9a3e5d65a18b5d087 (patch)
tree451e7f1baf616703001e4e5fe302affa5dadabf1 /extras/mini-os/include
parent5c53e82c3ff78b7e6c20af6d36faa781839bd78e (diff)
downloadxen-087adc9638f0641d678414c9a3e5d65a18b5d087.tar.gz
xen-087adc9638f0641d678414c9a3e5d65a18b5d087.tar.bz2
xen-087adc9638f0641d678414c9a3e5d65a18b5d087.zip
minios: Add missing fcntl.h.
Signed-off-by: Keir Fraser <keir.fraser@citrix.com>
Diffstat (limited to 'extras/mini-os/include')
-rw-r--r--extras/mini-os/include/posix/fcntl.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/extras/mini-os/include/posix/fcntl.h b/extras/mini-os/include/posix/fcntl.h
new file mode 100644
index 0000000000..ecfd8c848c
--- /dev/null
+++ b/extras/mini-os/include/posix/fcntl.h
@@ -0,0 +1,11 @@
+#ifndef _POSIX_FCNTL_H
+#define _POSIX_FCNTL_H
+
+#include_next <fcntl.h>
+
+#define F_ULOCK 0
+#define F_LOCK 1
+#define F_TLOCK 2
+#define F_TEST 3
+
+#endif /* _POSIX_FCNTL_H */