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
d19fc4ca
Commit
d19fc4ca
authored
Mar 06, 1999
by
Tom Lane
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Reduce DEF_MAXBACKENDS to 32 so that default configuration
is less likely to fail for lack of semaphores.
parent
731603a9
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
src/configure
src/configure
+2
-2
src/configure.in
src/configure.in
+2
-2
No files found.
src/configure
View file @
d19fc4ca
...
...
@@ -890,9 +890,9 @@ EOF
echo
"
$ac_t
""
$with_maxbackends
"
1>&6
else
cat
>>
confdefs.h
<<
EOF
#define DEF_MAXBACKENDS
64
#define DEF_MAXBACKENDS
32
EOF
echo
"
$ac_t
""
64
"
1>&6
echo
"
$ac_t
""
32
"
1>&6
fi
...
...
src/configure.in
View file @
d19fc4ca
...
...
@@ -255,13 +255,13 @@ AC_ARG_WITH(
AC_DEFINE_UNQUOTED(DEF_PGPORT, "5432") AC_MSG_RESULT(5432)
)
dnl DEF_MAXBACKENDS can be set by --with-maxbackends. Default value is
64
.
dnl DEF_MAXBACKENDS can be set by --with-maxbackends. Default value is
32
.
AC_MSG_CHECKING(setting DEF_MAXBACKENDS)
AC_ARG_WITH(
maxbackends,
[ --with-maxbackends=<n> set default maximum number of server processes ],
AC_DEFINE_UNQUOTED(DEF_MAXBACKENDS, ${withval}) AC_MSG_RESULT($with_maxbackends),
AC_DEFINE_UNQUOTED(DEF_MAXBACKENDS,
64) AC_MSG_RESULT(64
)
AC_DEFINE_UNQUOTED(DEF_MAXBACKENDS,
32) AC_MSG_RESULT(32
)
)
dnl We exclude tcl support unless user says --with-tcl
...
...
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