From: Rich Felker Date: Thu, 24 Jan 2013 03:18:45 +0000 (-0500) Subject: add RTLD_NODELETE flag for dlopen X-Git-Tag: v0.9.9~4 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=55ddbc3e5d70f03bc52aece95fffb6abad47dbf4;p=oweals%2Fmusl.git add RTLD_NODELETE flag for dlopen this is a trivial no-op, because dlclose never deletes libraries. thus we might as well have it in the header in case some application wants it, since we're already providing it anyway. --- diff --git a/include/dlfcn.h b/include/dlfcn.h index 5b57e8ac..e2f57b53 100644 --- a/include/dlfcn.h +++ b/include/dlfcn.h @@ -10,6 +10,7 @@ extern "C" { #define RTLD_LAZY 1 #define RTLD_NOW 2 #define RTLD_NOLOAD 4 +#define RTLD_NODELETE 4096 #define RTLD_GLOBAL 256 #define RTLD_LOCAL 0