Table of Contents

Field RTLD_LAZY

Namespace
Alternet.UI
Assembly
Alternet.UI.Common.dll

Flag "RTLD_LAZY" used in dlopen.

public const int RTLD_LAZY = 1

Returns

int
Flag "RTLD_LAZY" used in dlopen.

Remarks

Relocations shall be performed at an implementation-defined time, ranging from the time of the dlopen() call until the first reference to a given symbol occurs. Specifying RTLD_LAZY should improve performance on implementations supporting dynamic symbol binding as a process may not reference all of the functions in any given object. And, for systems supporting dynamic symbol resolution for normal process execution, this behavior mimics the normal handling of process execution.