Throughout use strace class in place of individual functions and variables.

* cygwin.din: Eliminate _strace_wm.
* sigproc.cc (wait_sig): Temporarily add more debugging output.
* include/cygwin/version.h: Bump minor api to reflect export change.
This commit is contained in:
Christopher Faylor
2000-03-07 05:33:09 +00:00
parent b5314dabec
commit 5abc9b830b
14 changed files with 86 additions and 92 deletions

View File

@@ -1262,7 +1262,7 @@ wait_sig (VOID *)
/* Internal signal to force a flush of strace data to disk. */
case __SIGSTRACE:
// proc_strace (); // Dump cached strace_printf stuff.
// proc_strace (); // Dump cached strace.prntf stuff.
break;
/* Signalled from a child process that it has stopped */
@@ -1301,11 +1301,14 @@ wait_sig (VOID *)
{
case 0:
SetEvent (sigcomplete_main);
sigproc_printf ("signalled sigcomplete_main");
break;
case 1:
ReleaseSemaphore (sigcomplete_nonmain, 1, NULL);
sigproc_printf ("signalled sigcomplete_nonmain");
break;
default:
sigproc_printf ("Did not signal anyone");
/* Signal from another process. No need to synchronize. */
break;
}