]> git.eshelyaron.com Git - emacs.git/commitdiff
(FILE_SEND_SIGCHLD): New macro.
authorGeoff Voelker <voelker@cs.washington.edu>
Fri, 17 Apr 1998 05:07:51 +0000 (05:07 +0000)
committerGeoff Voelker <voelker@cs.washington.edu>
Fri, 17 Apr 1998 05:07:51 +0000 (05:07 +0000)
src/w32.h

index 7604221f3592386fd457e4804f6293cd469b9468..cba594fc3f74d26bef74a1cc614b233678dce5da 100644 (file)
--- a/src/w32.h
+++ b/src/w32.h
@@ -89,12 +89,14 @@ typedef struct
 extern filedesc fd_info [ MAXDESC ];
 
 /* fd_info flag definitions */
-#define FILE_READ    0x0001
-#define FILE_WRITE   0x0002
-#define FILE_BINARY  0x0010
-#define FILE_LAST_CR 0x0020
-#define FILE_PIPE    0x0100
-#define FILE_SOCKET  0x0200
+#define FILE_READ               0x0001
+#define FILE_WRITE              0x0002
+#define FILE_BINARY             0x0010
+#define FILE_LAST_CR            0x0020
+#define FILE_AT_EOF             0x0040
+#define FILE_SEND_SIGCHLD       0x0080
+#define FILE_PIPE               0x0100
+#define FILE_SOCKET             0x0200
 
 extern child_process * new_child (void);
 extern void delete_child (child_process *cp);