diff options
author | Dmitriy Ivanov <dimitry@google.com> | 2014-05-19 15:06:58 -0700 |
---|---|---|
committer | Dmitriy Ivanov <dimitry@google.com> | 2014-10-31 17:04:00 -0700 |
commit | c87f65d2cd0690d81665f8b241c1d763f72b6f80 (patch) | |
tree | 3b2aa8f9f5db41455b221109c33d8f20f85778b5 /libc/include | |
parent | 210ff1b27b67bd2aa29b35a46f48430b7714a802 (diff) | |
download | bionic-c87f65d2cd0690d81665f8b241c1d763f72b6f80.zip bionic-c87f65d2cd0690d81665f8b241c1d763f72b6f80.tar.gz bionic-c87f65d2cd0690d81665f8b241c1d763f72b6f80.tar.bz2 |
Add RTLD_NODELETE flag support
Bug: 18186310
Bug: https://code.google.com/p/android/issues/detail?id=64069
(cherry picked from commit 1b20dafdbe65e43b9f4c95057e8482380833ea91)
Change-Id: Ic02eec22a7c322ece65eb40730a3404f611526b1
Diffstat (limited to 'libc/include')
-rw-r--r-- | libc/include/dlfcn.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libc/include/dlfcn.h b/libc/include/dlfcn.h index 8dde08c..afa7687 100644 --- a/libc/include/dlfcn.h +++ b/libc/include/dlfcn.h @@ -64,6 +64,7 @@ enum { RTLD_GLOBAL = 2, #endif RTLD_NOLOAD = 4, + RTLD_NODELETE = 0x01000, }; #if defined (__LP64__) |