Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
simgrid
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
10
Issues
10
List
Boards
Labels
Milestones
Merge Requests
2
Merge Requests
2
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
simgrid
simgrid
Commits
e60a0648
Commit
e60a0648
authored
Dec 04, 2019
by
Augustin Degomme
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
need to initialize here also for osx and co.
parent
679d19d0
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
0 deletions
+2
-0
src/simix/smx_context.cpp
src/simix/smx_context.cpp
+2
-0
No files found.
src/simix/smx_context.cpp
View file @
e60a0648
...
...
@@ -60,6 +60,7 @@ void SIMIX_context_mod_init()
xbt_assert
(
simix_global
->
context_factory
==
nullptr
);
#if HAVE_SMPI && (defined(__APPLE__) || defined(__NetBSD__))
smpi_init_options
();
std
::
string
priv
=
simgrid
::
config
::
get_value
<
std
::
string
>
(
"smpi/privatization"
);
if
(
context_factory_name
==
"thread"
&&
(
priv
==
"dlopen"
||
priv
==
"yes"
||
priv
==
"default"
||
priv
==
"1"
))
{
XBT_WARN
(
"dlopen+thread broken on Apple and BSD. Switching to raw contexts."
);
...
...
@@ -68,6 +69,7 @@ void SIMIX_context_mod_init()
#endif
#if HAVE_SMPI && defined(__FreeBSD__)
smpi_init_options
();
if
(
context_factory_name
==
"thread"
&&
simgrid
::
config
::
get_value
<
std
::
string
>
(
"smpi/privatization"
)
!=
"no"
)
{
XBT_WARN
(
"mmap broken on FreeBSD, but dlopen+thread broken too. Switching to dlopen+raw contexts."
);
context_factory_name
=
"raw"
;
...
...
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