8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-24 09:23:03 +01:00

-MINGW fix

This commit is contained in:
brodsom 2003-09-11 02:32:40 +00:00
parent b99e1d75e2
commit 3cf8fdd47e

View File

@ -36,7 +36,7 @@
*
*/
/* $Id: isc_ipc.cpp,v 1.2 2003-09-08 21:44:43 skidder Exp $ */
/* $Id: isc_ipc.cpp,v 1.3 2003-09-11 02:32:40 brodsom Exp $ */
#include <windows.h>
#include <process.h>
@ -57,6 +57,12 @@
#include <string.h>
#endif
#ifdef MINGW
// signals not defined in MINGW
#define SIG_SGE (void (__cdecl *)(int))3 /* signal gets error */
#define SIG_ACK (void (__cdecl *)(int))4 /* acknowledge */
#endif
#ifndef REQUESTER
static USHORT initialized_signals = FALSE;
static SLONG volatile overflow_count = 0;
@ -300,4 +306,4 @@ static void overflow_handler(int signal, int code) throw()
}
}
}
#endif
#endif