configurarion changes

git-svn-id: https://yap.svn.sf.net/svnroot/yap/trunk@369 b08c6af1-5177-4d33-ba66-4b1c6b8b522a
This commit is contained in:
vsc
2002-02-22 06:12:18 +00:00
parent 709b8b277b
commit f92947d61b
18 changed files with 399 additions and 406 deletions

View File

@@ -1090,7 +1090,7 @@ InteractSIGINT(int ch) {
return(1);
case 'e':
/* exit */
exit_yap(0, "");
exit_yap(0);
return(-1);
case 't':
/* start tracing */
@@ -1296,7 +1296,8 @@ ReceiveSignal (int s)
/* These signals are not handled by WIN32 and not the Macintosh */
case SIGQUIT:
case SIGKILL:
exit_yap (SIGKILL, "\n\n\n[ Quit signal received ]\n\n");
YP_fprintf(YP_stderr, "\n\n\n[ Quit signal received ]\n\n");
exit_yap (SIGKILL);
#endif
#if defined(SIGUSR1)
case SIGUSR1:
@@ -2180,6 +2181,8 @@ VaxFixFrame (dummy)
#ifdef _WIN32
#include <windows.h>
int WINAPI STD_PROTO(win_yap, (HANDLE, DWORD, LPVOID));
int WINAPI win_yap(HANDLE hinst, DWORD reason, LPVOID reserved)