diff options
| author | Bruce Momjian <bruce@momjian.us> | 2003-12-20 17:31:21 +0000 |
|---|---|---|
| committer | Bruce Momjian <bruce@momjian.us> | 2003-12-20 17:31:21 +0000 |
| commit | d75b2ec4ebbc7fdb51088e89da47c6523bf2c640 (patch) | |
| tree | 4f0a12508b01da4d98c663bbdadb4a2e1ae6837a /src/include/c.h | |
| parent | 1ee0ddf91df31669ca0d07871d3f5aa88791b78d (diff) | |
| download | postgresql-d75b2ec4ebbc7fdb51088e89da47c6523bf2c640.tar.gz | |
This patch is the next step towards (re)allowing fork/exec.
Claudio Natoli
Diffstat (limited to 'src/include/c.h')
| -rw-r--r-- | src/include/c.h | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/include/c.h b/src/include/c.h index f08f56633d..984bf14fca 100644 --- a/src/include/c.h +++ b/src/include/c.h @@ -12,7 +12,7 @@ * Portions Copyright (c) 1996-2003, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $PostgreSQL: pgsql/src/include/c.h,v 1.157 2003/11/29 22:40:53 pgsql Exp $ + * $PostgreSQL: pgsql/src/include/c.h,v 1.158 2003/12/20 17:31:21 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -793,6 +793,13 @@ extern int fdatasync(int fildes); #define HAVE_STRTOULL 1 #endif +/* EXEC_BACKEND defines */ +#ifdef EXEC_BACKEND +#define NON_EXEC_STATIC +#else +#define NON_EXEC_STATIC static +#endif + /* /port compatibility functions */ #include "port.h" |
