Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
tsoc
openmm
Commits
cbdb2736
Commit
cbdb2736
authored
Mar 04, 2020
by
tic20
Browse files
Switched dlopen flag from RTLD_GLOBAL to RTLD_LOCAL
parent
a9223eea
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
5 deletions
+4
-5
olla/src/Platform.cpp
olla/src/Platform.cpp
+4
-5
No files found.
olla/src/Platform.cpp
View file @
cbdb2736
...
@@ -222,7 +222,7 @@ static void* loadOneLibrary(const string& file) {
...
@@ -222,7 +222,7 @@ static void* loadOneLibrary(const string& file) {
#ifdef __PNACL__
#ifdef __PNACL__
throw
OpenMMException
(
"Loading dynamic libraries is not supported on PNaCl"
);
throw
OpenMMException
(
"Loading dynamic libraries is not supported on PNaCl"
);
#else
#else
void
*
handle
=
dlopen
(
file
.
c_str
(),
RTLD_LAZY
|
RTLD_
G
LO
B
AL
);
void
*
handle
=
dlopen
(
file
.
c_str
(),
RTLD_LAZY
|
RTLD_LO
C
AL
);
if
(
handle
==
NULL
)
{
if
(
handle
==
NULL
)
{
throw
OpenMMException
(
"Error loading library "
+
file
+
": "
+
dlerror
());
throw
OpenMMException
(
"Error loading library "
+
file
+
": "
+
dlerror
());
}
}
...
@@ -357,4 +357,3 @@ ContextImpl& Platform::getContextImpl(Context& context) const {
...
@@ -357,4 +357,3 @@ ContextImpl& Platform::getContextImpl(Context& context) const {
const
ContextImpl
&
Platform
::
getContextImpl
(
const
Context
&
context
)
const
{
const
ContextImpl
&
Platform
::
getContextImpl
(
const
Context
&
context
)
const
{
return
*
context
.
impl
;
return
*
context
.
impl
;
}
}
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