diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2003-07-27 17:10:07 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2003-07-27 17:10:07 +0000 |
commit | e8db9b26d03b9e58a30eb26ec2ee21c92293d3a2 (patch) | |
tree | c2adf83074db369ea5211b06e5181ebabf1a61d8 /src/include/miscadmin.h | |
parent | aeea73d4eceb9b33ff16a69c77bd923a0394a6d0 (diff) | |
download | postgresql-e8db9b26d03b9e58a30eb26ec2ee21c92293d3a2.tar.gz postgresql-e8db9b26d03b9e58a30eb26ec2ee21c92293d3a2.zip |
elog mop-up.
Diffstat (limited to 'src/include/miscadmin.h')
-rw-r--r-- | src/include/miscadmin.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/include/miscadmin.h b/src/include/miscadmin.h index cfe065ffcf0..d6ded84abd7 100644 --- a/src/include/miscadmin.h +++ b/src/include/miscadmin.h @@ -12,7 +12,7 @@ * Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: miscadmin.h,v 1.126 2003/07/17 00:55:37 tgl Exp $ + * $Id: miscadmin.h,v 1.127 2003/07/27 17:10:07 tgl Exp $ * * NOTES * some of the information in this file should be moved to @@ -53,10 +53,10 @@ * * A related, but conceptually distinct, mechanism is the "critical section" * mechanism. A critical section not only holds off cancel/die interrupts, - * but causes any elog(ERROR) or elog(FATAL) to become elog(PANIC) --- that is, - * a system-wide reset is forced. Needless to say, only really *critical* - * code should be marked as a critical section! Currently, this mechanism - * is only used for XLOG-related code. + * but causes any ereport(ERROR) or ereport(FATAL) to become ereport(PANIC) + * --- that is, a system-wide reset is forced. Needless to say, only really + * *critical* code should be marked as a critical section! Currently, this + * mechanism is only used for XLOG-related code. * *****************************************************************************/ |