Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
a7257ff4
Commit
a7257ff4
authored
Feb 06, 1997
by
Marc G. Fournier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
autoconf test for and set HAVE_VFORK
parent
e72b1ccd
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
7 deletions
+5
-7
src/backend/postmaster/postmaster.c
src/backend/postmaster/postmaster.c
+2
-2
src/include/config.h.in
src/include/config.h.in
+3
-5
No files found.
src/backend/postmaster/postmaster.c
View file @
a7257ff4
...
...
@@ -10,7 +10,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/postmaster/postmaster.c,v 1.3
6 1997/01/27 22:37:48
scrappy Exp $
* $Header: /cvsroot/pgsql/src/backend/postmaster/postmaster.c,v 1.3
7 1997/02/06 06:15:49
scrappy Exp $
*
* NOTES
*
...
...
@@ -86,7 +86,7 @@
#if defined(DBX_VERSION)
# define FORK() (0)
#else
# if
defined(NO
_VFORK)
# if
ndef HAVE
_VFORK)
# define FORK() fork()
# else
# define FORK() vfork()
...
...
src/include/config.h.in
View file @
a7257ff4
...
...
@@ -59,6 +59,9 @@
/* Set to 1 if you have kill() */
#undef HAVE_KILL
/* Set to 1 if you have vfork() */
#undef HAVE_VFORK
/* Set to 1 if you have sysconf() */
#undef HAVE_SYSCONF
...
...
@@ -81,7 +84,6 @@
#if defined(aix)
# define CLASS_CONFLICT
# define DISABLE_XOPEN_NLS
# define HAVE_SYS_SELECT_H
# define HAVE_ANSI_CPP
# define HAS_TEST_AND_SET
typedef unsigned int slock_t;
...
...
@@ -135,7 +137,6 @@
#if defined(i386_solaris)
# define USE_POSIX_TIME
# define USE_POSIX_SIGNALS
# define NEED_RUSAGE
# define NO_EMPTY_STMTS
# define SYSV_DIRENT
# define HAS_TEST_AND_SET
...
...
@@ -146,7 +147,6 @@
# define USE_POSIX_TIME
# define USE_POSIX_SIGNALS
# define NO_EMPTY_STMTS
# define NO_VFORK
# define SYSV_DIRENT
# define HAS_TEST_AND_SET
# include <abi_mutex.h>
...
...
@@ -193,7 +193,6 @@
#if defined(sparc_solaris)
# define USE_POSIX_TIME
# define USE_POSIX_SIGNALS
# define NEED_RUSAGE
# define NO_EMPTY_STMTS
# define USE_POSIX_TIME
# define SYSV_DIRENT
...
...
@@ -209,7 +208,6 @@ typedef unsigned char slock_t;
#if defined(svr4)
# define USE_POSIX_TIME
# define USE_POSIX_SIGNALS
# define NEED_RUSAGE
# define NO_EMPTY_STMTS
# define SYSV_DIRENT
#endif
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment