Field RTLD_NOW
Flag "RTLD_NOW" used in dlopen.
public const int RTLD_NOW = 2
Returns
- int
- Flag "RTLD_NOW" used in dlopen.
Remarks
All necessary relocations shall be performed when the object is first loaded. This may waste some processing if relocations are performed for functions that are never referenced.This behavior may be useful for applications that need to know as soon as an object is loaded that all symbols referenced during execution are available. Any object loaded by dlopen() that requires relocations against global symbols can reference the symbols in the original process image file, any objects loaded at program start-up, from the object itself as well as any other object included in the same dlopen() invocation, and any objects that were loaded in any dlopen() invocation and which specified the RTLD_GLOBAL flag.