comparison src/w32proc.c @ 14036:621a575db6f7

Comment fixes.
author Karl Heuer <kwzh@gnu.org>
date Fri, 05 Jan 1996 10:03:17 +0000
parents c80fb27c183b
children ee40177f6c68
comparison
equal deleted inserted replaced
14035:09cb73d0ec41 14036:621a575db6f7
406 errno = EINVAL; 406 errno = EINVAL;
407 return -1; 407 return -1;
408 } 408 }
409 409
410 /* Massage the exit code from the process to match the format expected 410 /* Massage the exit code from the process to match the format expected
411 by the WIFSTOPPED et al macros in syswait.h. Only WIFSIGNALLED and 411 by the WIFSTOPPED et al macros in syswait.h. Only WIFSIGNALED and
412 WIFEXITED are supported; WIFSTOPPED doesn't make sense under NT. */ 412 WIFEXITED are supported; WIFSTOPPED doesn't make sense under NT. */
413 413
414 if (retval == STATUS_CONTROL_C_EXIT) 414 if (retval == STATUS_CONTROL_C_EXIT)
415 retval = SIGINT; 415 retval = SIGINT;
416 else 416 else