aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2002-12-09 18:21:43 +0000
committerTom Lane <tgl@sss.pgh.pa.us>2002-12-09 18:21:43 +0000
commit780651d09ce5a8f37d44c2af64dcd52eb376662a (patch)
tree41f7a659f8360d5d1a033fe9986594489b833c6a /src
parent1170a970a998130bd9191e24ee5c43b7b6003632 (diff)
downloadpostgresql-780651d09ce5a8f37d44c2af64dcd52eb376662a.tar.gz
postgresql-780651d09ce5a8f37d44c2af64dcd52eb376662a.zip
Update obsolete comment.
Diffstat (limited to 'src')
-rw-r--r--src/include/miscadmin.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/miscadmin.h b/src/include/miscadmin.h
index 6c9956ee91b..ce254a9261c 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.113 2002/12/05 04:04:50 momjian Exp $
+ * $Id: miscadmin.h,v 1.114 2002/12/09 18:21:43 tgl Exp $
*
* NOTES
* some of the information in this file should be moved to
@@ -53,7 +53,7 @@
*
* 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(STOP) --- that is,
+ * 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.