From 8f61232b36e5988e3bb89ad42b821c89c57073d7 Mon Sep 17 00:00:00 2001 From: Stanislaw Halik Date: Mon, 24 Aug 2015 10:05:27 +0200 Subject: 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. --- opentrack/plugin-support.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 ); -- cgit v1.2.3