add RTLD_NODELETE

SVN revision: 35750
This commit is contained in:
Vincent Torri 2008-08-30 08:24:35 +00:00
parent 696c63f011
commit c3e8168c53
1 changed files with 5 additions and 4 deletions

View File

@ -64,10 +64,11 @@ extern "C" {
* Symbols in this dlopen'ed obj are visible to other dlopen'ed objs
*/
# define RTLD_LAZY 1 /* lazy function call binding */
# define RTLD_NOW 2 /* immediate function call binding */
# define RTLD_GLOBAL 4 /* symbols in this dlopen'ed obj are visible
to other dlopen'ed objs */
# define RTLD_LAZY 0x00001 /* lazy function call binding */
# define RTLD_NOW 0x00002 /* immediate function call binding */
# define RTLD_GLOBAL 0x00100 /* symbols in this dlopen'ed obj are visible
to other dlopen'ed objs */
#define RTLD_NODELETE 0x01000 /* do not delete object when closed. */
/**