Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
SWIFT
SWIFTsim
Commits
71d36d0c
Commit
71d36d0c
authored
Sep 12, 2016
by
Peter W. Draper
Browse files
Just use maxdepth to avoid thread issues with the space.
parent
46b9eceb
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/space.c
View file @
71d36d0c
...
...
@@ -1270,7 +1270,7 @@ void space_split_mapper(void *map_data, int num_elements, void *extra_data) {
}
/* If the depth is too large, we have a problem and should stop. */
if
(
s
->
maxdepth
>
space_cell_maxdepth
)
{
if
(
maxdepth
>
space_cell_maxdepth
)
{
error
(
"Exceeded maximum depth (%d) when splitting cells, aborting"
,
space_cell_maxdepth
);
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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