*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/utils/error/assert.c,v 1.8 1998/06/18 16:32:51 momjian Exp $
+ * $Header: /cvsroot/pgsql/src/backend/utils/error/assert.c,v 1.9 1998/06/18 16:35:38 momjian Exp $
*
* NOTE
* This should eventually work with elog(), dlog(), etc.
*-------------------------------------------------------------------------
*/
#include
+#include
#include "postgres.h" /* where the declaration goes */
#include "utils/module.h"
}
#ifdef ABORT_ON_ASSERT
- sleep(99999);
abort();
#endif
+#ifdef SLEEP_ON_ASSERT
+ sleep(1000000);
+#endif
/*
* XXX Depending on the Exception and tracing conditions, you will XXX