Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mariadb
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
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
3668f8a5
Commit
3668f8a5
authored
Sep 02, 2009
by
Davi Arnaut
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Increase thread stack size on HP-UX when built with debug.
parent
f0720480
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
1 deletion
+6
-1
storage/ndb/src/kernel/blocks/ndbfs/AsyncFile.cpp
storage/ndb/src/kernel/blocks/ndbfs/AsyncFile.cpp
+6
-1
No files found.
storage/ndb/src/kernel/blocks/ndbfs/AsyncFile.cpp
View file @
3668f8a5
...
...
@@ -106,8 +106,13 @@ void
AsyncFile
::
doStart
()
{
// Stacksize for filesystem threads
// An 8k stack should be enough
#if !defined(DBUG_OFF) && defined (__hpux)
// Empirical evidence indicates at least 32k
const
NDB_THREAD_STACKSIZE
stackSize
=
32768
;
#else
// Otherwise an 8k stack should be enough
const
NDB_THREAD_STACKSIZE
stackSize
=
8192
;
#endif
char
buf
[
16
];
numAsyncFiles
++
;
...
...
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