diff options
author | Bruce Momjian <bruce@momjian.us> | 2002-10-11 04:12:14 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2002-10-11 04:12:14 +0000 |
commit | 6a7bb0afbcab1ac3f1e9bbcb536bc7865f4503e6 (patch) | |
tree | 9fec5490cf4e27e39e37695f0226735a8ed7269c /src/include/utils/palloc.h | |
parent | c2311337f0bff953e60e8f65e759de041e4f2bc4 (diff) | |
download | postgresql-6a7bb0afbcab1ac3f1e9bbcb536bc7865f4503e6.tar.gz postgresql-6a7bb0afbcab1ac3f1e9bbcb536bc7865f4503e6.zip |
Prevent tv_sec from becoming negative in connection timeout code.
Diffstat (limited to 'src/include/utils/palloc.h')
-rw-r--r-- | src/include/utils/palloc.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/include/utils/palloc.h b/src/include/utils/palloc.h index 168ed301977..c1cb6f69c42 100644 --- a/src/include/utils/palloc.h +++ b/src/include/utils/palloc.h @@ -21,7 +21,7 @@ * Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: palloc.h,v 1.19 2002/06/20 20:29:53 momjian Exp $ + * $Id: palloc.h,v 1.20 2002/10/11 04:12:14 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -46,9 +46,12 @@ extern DLLIMPORT MemoryContext CurrentMemoryContext; * Fundamental memory-allocation operations (more are in utils/memutils.h) */ extern void *MemoryContextAlloc(MemoryContext context, Size size); +extern void *MemoryContextAllocZero(MemoryContext context, Size size); #define palloc(sz) MemoryContextAlloc(CurrentMemoryContext, (sz)) +#define palloc0(sz) MemoryContextAllocZero(CurrentMemoryContext, (sz)) + extern void pfree(void *pointer); extern void *repalloc(void *pointer, Size size); |