projects
/
oweals
/
musl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a0ae0b0
)
add accidentally-omitted file needed for posix_spawn file actions
author
Rich Felker
<dalias@aerifal.cx>
Sun, 29 May 2011 03:31:11 +0000
(23:31 -0400)
committer
Rich Felker
<dalias@aerifal.cx>
Sun, 29 May 2011 03:31:11 +0000
(23:31 -0400)
src/process/fdop.h
[new file with mode: 0644]
patch
|
blob
diff --git a/src/process/fdop.h
b/src/process/fdop.h
new file mode 100644
(file)
index 0000000..
72f9b5f
--- /dev/null
+++ b/
src/process/fdop.h
@@ -0,0
+1,10
@@
+#define FDOP_CLOSE 1
+#define FDOP_DUP2 2
+#define FDOP_OPEN 3
+
+struct fdop {
+ struct fdop *next;
+ int cmd, fd, newfd, oflag;
+ mode_t mode;
+ char path[];
+};