From c5354dff2052e6922ae7add998753d9bafcd19b0 Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Sat, 10 Aug 2002 20:29:18 +0000 Subject: This patch removes a lot of unused code related to assertions and error handling, and simplifies the code that remains. Apparently, the code that left Berkeley had a whole "error handling subsystem", which exceptions and whatnot. Since we don't use that anymore, there's no reason to keep it around. The regression tests pass with the patch applied. Unless anyone sees a problem, please apply. Neil Conway --- src/backend/postmaster/postmaster.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'src/backend/postmaster') diff --git a/src/backend/postmaster/postmaster.c b/src/backend/postmaster/postmaster.c index acc4d0090b2..1c70c4f0ecd 100644 --- a/src/backend/postmaster/postmaster.c +++ b/src/backend/postmaster/postmaster.c @@ -37,7 +37,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/postmaster/postmaster.c,v 1.282 2002/08/04 06:26:38 thomas Exp $ + * $Header: /cvsroot/pgsql/src/backend/postmaster/postmaster.c,v 1.283 2002/08/10 20:29:18 momjian Exp $ * * NOTES * @@ -102,7 +102,6 @@ #include "storage/proc.h" #include "access/xlog.h" #include "tcop/tcopprot.h" -#include "utils/exc.h" #include "utils/guc.h" #include "utils/memutils.h" #include "utils/ps_status.h" @@ -380,9 +379,8 @@ PostmasterMain(int argc, char *argv[]) MyProcPid = getpid(); /* - * Fire up essential subsystems: error and memory management + * Fire up essential subsystems: memory management */ - EnableExceptionHandling(true); MemoryContextInit(); /* -- cgit v1.2.3