summaryrefslogtreecommitdiffstats
path: root/winsup/cygwin/syscalls.cc
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2000-10-17 18:55:58 +0000
committerChristopher Faylor <me@cgf.cx>2000-10-17 18:55:58 +0000
commit3f7bd531155175f7c8158b68fcaf9e1aa98f9c1d (patch)
tree88fccf772ceea83392c3ef91f8fd831422a76d15 /winsup/cygwin/syscalls.cc
parente6f5c9d57d2c36296d8eed223c92a3084ccf4a93 (diff)
downloadcygnal-3f7bd531155175f7c8158b68fcaf9e1aa98f9c1d.tar.gz
cygnal-3f7bd531155175f7c8158b68fcaf9e1aa98f9c1d.tar.bz2
cygnal-3f7bd531155175f7c8158b68fcaf9e1aa98f9c1d.zip
* sigproc.cc (proc_subproc): Remove unneeded test for correct process in
PROC_ADDCHILD. Return 0 when terminated child has just been reparented. (wait_subproc): Only send SIGCHLD when proc_subproc returns != 0. * strace.cc (strace::vsprntf): Only strip .exe extension from program name.
Diffstat (limited to 'winsup/cygwin/syscalls.cc')
-rw-r--r--winsup/cygwin/syscalls.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/cygwin/syscalls.cc b/winsup/cygwin/syscalls.cc
index f4a13b0a7..a9b926b97 100644
--- a/winsup/cygwin/syscalls.cc
+++ b/winsup/cygwin/syscalls.cc
@@ -920,7 +920,7 @@ _fstat (int fd, struct stat *buf)
{
memset (buf, 0, sizeof (struct stat));
r = fdtab[fd]->fstat (buf);
- syscall_printf ("%d = fstat (%d, %x)", r,fd,buf);
+ syscall_printf ("%d = fstat (%d, %x)", r, fd, buf);
}
return r;