diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2001-01-22 00:18:13 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2001-01-22 00:18:13 +0000 |
commit | 59a3a401497cd72c550fdfcaa782162d91335bba (patch) | |
tree | 665dcfdba94a77d49d17da95024e698add3e354d /src | |
parent | d90eb434e4b93ef679499e5f23b0c812f6a4a8f9 (diff) | |
download | postgresql-59a3a401497cd72c550fdfcaa782162d91335bba.tar.gz postgresql-59a3a401497cd72c550fdfcaa782162d91335bba.zip |
All the global memory contexts should be DLLIMPORT, if any are.
Diffstat (limited to 'src')
-rw-r--r-- | src/include/utils/memutils.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/include/utils/memutils.h b/src/include/utils/memutils.h index b679a758260..7e5b3700f01 100644 --- a/src/include/utils/memutils.h +++ b/src/include/utils/memutils.h @@ -10,7 +10,7 @@ * Portions Copyright (c) 1996-2000, PostgreSQL, Inc * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: memutils.h,v 1.39 2001/01/11 23:28:34 petere Exp $ + * $Id: memutils.h,v 1.40 2001/01/22 00:18:13 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -63,12 +63,12 @@ typedef struct StandardChunkHeader * Only TopMemoryContext and ErrorContext are initialized by * MemoryContextInit() itself. */ -extern MemoryContext TopMemoryContext; -extern MemoryContext ErrorContext; -extern MemoryContext PostmasterContext; -extern MemoryContext CacheMemoryContext; -extern MemoryContext QueryContext; -extern MemoryContext TopTransactionContext; +extern DLLIMPORT MemoryContext TopMemoryContext; +extern DLLIMPORT MemoryContext ErrorContext; +extern DLLIMPORT MemoryContext PostmasterContext; +extern DLLIMPORT MemoryContext CacheMemoryContext; +extern DLLIMPORT MemoryContext QueryContext; +extern DLLIMPORT MemoryContext TopTransactionContext; extern DLLIMPORT MemoryContext TransactionCommandContext; |