aboutsummaryrefslogtreecommitdiffstats
path: root/src/w32proc.c
diff options
context:
space:
mode:
authorEli Zaretskii2016-03-01 20:18:10 +0200
committerEli Zaretskii2016-03-01 20:18:10 +0200
commitab30bf5e8736f1414def53adae76a257fa482e53 (patch)
tree3c68fc4a7c97dded30244751275018f2066e2b68 /src/w32proc.c
parent14810299f24986b746bcd89032ade2eef2d15ceb (diff)
downloademacs-ab30bf5e8736f1414def53adae76a257fa482e53.tar.gz
emacs-ab30bf5e8736f1414def53adae76a257fa482e53.zip
; * src/w32proc.c: Update the commentary to sys_select.
Diffstat (limited to 'src/w32proc.c')
-rw-r--r--src/w32proc.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/w32proc.c b/src/w32proc.c
index a89a9850466..85ddbfd9c7b 100644
--- a/src/w32proc.c
+++ b/src/w32proc.c
@@ -2062,10 +2062,11 @@ sys_spawnve (int mode, char *cmdname, char **argv, char **envp)
2062 return pid; 2062 return pid;
2063} 2063}
2064 2064
2065/* Emulate the select call 2065/* Emulate the select call.
2066 Wait for available input on any of the given rfds, or timeout if 2066 Wait for available input on any of the given rfds, or timeout if
2067 a timeout is given and no input is detected 2067 a timeout is given and no input is detected. wfds are supported
2068 wfds and efds are not supported and must be NULL. 2068 only for asynchronous 'connect' calls. efds are not supported
2069 and must be NULL.
2069 2070
2070 For simplicity, we detect the death of child processes here and 2071 For simplicity, we detect the death of child processes here and
2071 synchronously call the SIGCHLD handler. Since it is possible for 2072 synchronously call the SIGCHLD handler. Since it is possible for