* fork.cc (child_copy): Add missing Windows PID in debug output.
This commit is contained in:
parent
ee4370fd29
commit
0b7c56a5f5
|
@ -1,4 +1,8 @@
|
||||||
2007-01-10 Corinna Vinschen <corinna@vinschen.de>
|
2007-01-12 Corinna Vinschen <corinna@vinschen.de>
|
||||||
|
|
||||||
|
* fork.cc (child_copy): Add missing Windows PID in debug output.
|
||||||
|
|
||||||
|
2007-01-12 Corinna Vinschen <corinna@vinschen.de>
|
||||||
|
|
||||||
* syscalls.cc: Update copyright.
|
* syscalls.cc: Update copyright.
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
/* fork.cc
|
/* fork.cc
|
||||||
|
|
||||||
Copyright 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2004, 2005, 2006
|
Copyright 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2004, 2005, 2006,
|
||||||
Red Hat, Inc.
|
2007 Red Hat, Inc.
|
||||||
|
|
||||||
This file is part of Cygwin.
|
This file is part of Cygwin.
|
||||||
|
|
||||||
|
@ -704,7 +704,7 @@ child_copy (HANDLE hp, bool write, ...)
|
||||||
/* If this happens then there is a bug in our fork
|
/* If this happens then there is a bug in our fork
|
||||||
implementation somewhere. */
|
implementation somewhere. */
|
||||||
system_printf ("%s %s copy failed, %p..%p, done %d, windows pid %u, %E",
|
system_printf ("%s %s copy failed, %p..%p, done %d, windows pid %u, %E",
|
||||||
what, huh[write], low, high, done);
|
what, huh[write], low, high, done, myself->dwProcessId);
|
||||||
goto err;
|
goto err;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue