excabort.c
上传用户:blenddy
上传日期:2007-01-07
资源大小:6495k
文件大小:1k
源码类别:

数据库系统

开发平台:

Unix_Linux

  1. /*-------------------------------------------------------------------------
  2.  *
  3.  * excabort.c
  4.  *   Default exception abort code.
  5.  *
  6.  * Copyright (c) 1994, Regents of the University of California
  7.  *
  8.  *
  9.  * IDENTIFICATION
  10.  *   $Header: /usr/local/cvsroot/pgsql/src/backend/utils/error/excabort.c,v 1.6.2.1 1999/08/02 05:25:04 scrappy Exp $
  11.  *
  12.  *-------------------------------------------------------------------------
  13.  */
  14. #include "postgres.h"
  15. #include "utils/exc.h"
  16. void
  17. ExcAbort(const Exception *excP,
  18.  ExcDetail detail,
  19.  ExcData data,
  20.  ExcMessage message)
  21. {
  22. /* dump core */
  23. abort();
  24. }