* process.cc (process::process): Only notice that signal_arrived is
NULL in debug output.
This commit is contained in:
parent
2567de8446
commit
d2ee481248
|
@ -1,3 +1,8 @@
|
||||||
|
2014-04-07 Corinna Vinschen <corinna@vinschen.de>
|
||||||
|
|
||||||
|
* process.cc (process::process): Only notice that signal_arrived is
|
||||||
|
NULL in debug output.
|
||||||
|
|
||||||
2014-03-12 Corinna Vinschen <corinna@vinschen.de>
|
2014-03-12 Corinna Vinschen <corinna@vinschen.de>
|
||||||
|
|
||||||
* Makefile.in (OBJS): Add pwdgrp.o.
|
* Makefile.in (OBJS): Add pwdgrp.o.
|
||||||
|
|
|
@ -61,8 +61,7 @@ process::process (const pid_t cygpid, const DWORD winpid, HANDLE signal_arrived)
|
||||||
debug_printf ("got handle %p for new cache process %d(%u)",
|
debug_printf ("got handle %p for new cache process %d(%u)",
|
||||||
_hProcess, _cygpid, _winpid);
|
_hProcess, _cygpid, _winpid);
|
||||||
if (!signal_arrived)
|
if (!signal_arrived)
|
||||||
system_printf ("signal_arrived NULL for process %d(%u)",
|
debug_printf ("signal_arrived NULL for process %d(%u)", _cygpid, _winpid);
|
||||||
_cygpid, _winpid);
|
|
||||||
else if (signal_arrived != INVALID_HANDLE_VALUE)
|
else if (signal_arrived != INVALID_HANDLE_VALUE)
|
||||||
{
|
{
|
||||||
if (!DuplicateHandle (_hProcess, signal_arrived,
|
if (!DuplicateHandle (_hProcess, signal_arrived,
|
||||||
|
|
Loading…
Reference in New Issue