Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
Gaëlle USSEGLIO
otb
Commits
02cb5268
Commit
02cb5268
authored
Sep 22, 2017
by
Marina Bertolino
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
BUG: mantis 1422: fix stack size for macx
parent
eb97ca86
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
0 deletions
+7
-0
Modules/Wrappers/QtWidget/src/otbWrapperQtWidgetModel.cxx
Modules/Wrappers/QtWidget/src/otbWrapperQtWidgetModel.cxx
+7
-0
No files found.
Modules/Wrappers/QtWidget/src/otbWrapperQtWidgetModel.cxx
View file @
02cb5268
...
...
@@ -166,6 +166,13 @@ QtWidgetModel
// launch the output image writing
AppliThread
*
taskAppli
=
new
AppliThread
(
m_Application
);
#ifdef __APPLE__
/* bug mantis 1422 :
X Mb *1024*1024 (bytes)
X = 9 to get 9M stacksize!
*/
taskAppli
->
setStackSize
(
static_cast
<
uint
>
(
9
*
1024
*
1024
));
#endif
QObject
::
connect
(
taskAppli
,
...
...
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