From 1aebc3618a0be13451918581ad390ad9a3518702 Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Wed, 28 Jun 2000 03:33:33 +0000 Subject: First phase of memory management rewrite (see backend/utils/mmgr/README for details). It doesn't really do that much yet, since there are no short-term memory contexts in the executor, but the infrastructure is in place and long-term contexts are handled reasonably. A few long- standing bugs have been fixed, such as 'VACUUM; anything' in a single query string crashing. Also, out-of-memory is now considered a recoverable ERROR, not FATAL. Eliminate a large amount of crufty, now-dead code in and around memory management. Fix problem with holding off SIGTRAP, SIGSEGV, etc in postmaster and backend startup. --- src/include/postgres.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'src/include/postgres.h') diff --git a/src/include/postgres.h b/src/include/postgres.h index 0f26b7978a..a4a7fda110 100644 --- a/src/include/postgres.h +++ b/src/include/postgres.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2000, PostgreSQL, Inc * Portions Copyright (c) 1995, Regents of the University of California * - * $Id: postgres.h,v 1.41 2000/06/13 07:35:24 tgl Exp $ + * $Id: postgres.h,v 1.42 2000/06/28 03:32:56 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -39,7 +39,6 @@ #include "postgres_ext.h" #include "c.h" #include "utils/elog.h" -#include "utils/mcxt.h" #include "utils/palloc.h" /* ---------------------------------------------------------------- -- cgit v1.2.3