diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2015-08-24 10:05:27 +0200 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2015-08-24 10:05:27 +0200 |
commit | 8f61232b36e5988e3bb89ad42b821c89c57073d7 (patch) | |
tree | 157df3c83a795c456229631f7cfa1b6ca182deac /opentrack/plugin-support.hpp | |
parent | 872acf11a851a3250f2c668af5f30dc3d48ef477 (diff) |
plugin-support: free modules from address space when needed
This is groundwork for #226, even though modules still need not to load
all at once and persist till program stop.
This issue only affects Linux.
Diffstat (limited to 'opentrack/plugin-support.hpp')
-rw-r--r-- | opentrack/plugin-support.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/opentrack/plugin-support.hpp b/opentrack/plugin-support.hpp index ec8bb3c8..c2c1b048 100644 --- a/opentrack/plugin-support.hpp +++ b/opentrack/plugin-support.hpp @@ -103,7 +103,7 @@ struct dylib { # if defined(__APPLE__) RTLD_LOCAL|RTLD_FIRST|RTLD_NOW # else - RTLD_NOW|RTLD_GLOBAL|RTLD_NODELETE + RTLD_NOW|RTLD_GLOBAL # endif ); |