head	1.3;
access;
symbols
	Version_2_1:1.3
	C_Demo_1:1.2;
locks; strict;
comment	@ * @;


1.3
date	90.09.25.16.51.48;	author kemnitz;	state Exp;
branches;
next	1.2;

1.2
date	89.09.05.17.27.44;	author mao;	state C_Demo_1;
branches;
next	1.1;

1.1
date	89.06.22.22.36.13;	author hirohama;	state Exp;
branches;
next	;


desc
@@


1.3
log
@Updating from revision 1.2 to revision 1.3
@
text
@/*
 * excabort.c --
 *	Default exception abort code.
 */

#include "tmp/c.h"

RcsId("$Header: RCS/excabort.c,v 1.3 90/08/15 08:47:40 cimarron Exp $");

#include "utils/exc.h"

/*ARGSUSED*/
void
ExcAbort(excP, detail, data, message)
	Exception	*excP;
	ExcDetail	detail;
	ExcData		data;
	ExcMessage	message;
{
#ifdef	__SABER__
	saber_stop();
#else
	/* dump core */
	abort();
#endif
}
@


1.2
log
@Working version of C-only demo
@
text
@d6 1
a6 1
#include "c.h"
d8 1
a8 1
RcsId("$Header: /usr6/postgres/mao/postgres/src/utils/error/RCS/excabort.c,v 1.1 89/06/22 22:36:13 hirohama Exp $");
d10 1
a10 1
#include "exc.h"
@


1.1
log
@Initial revision
@
text
@d8 1
a8 1
RcsId("$Header$");
@
