Exemplo n.º 1
0
// We'll jump into this function from the interruptHandler routine...
// This function never exits.
static void ThrowBreakException()
{
	EnterCriticalSection(&g_CriticalSection);

        SQLCI_EXCEPTION_EPILOGUE("Sqlci ThrowBreak");

	throw EHBreakException();
}
Exemplo n.º 2
0
void CmpAbortInternal(const char* msg, const char* file, Int32 num)
{
  NAInternalError::throwFatalException(msg, file, num);

  throw EHBreakException(file, num);
}