Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add process.dlopenFlags #12794

Closed

Commits on Sep 8, 2017

  1. constants: add dlopen flags

    Let's add constants for dlopen flags, which are needed
    for dlopen's flag passing, implemented in next commit.
    
    Signed-off-by: Ezequiel Garcia <[email protected]>
    ezequielgarcia committed Sep 8, 2017
    Configuration menu
    Copy the full SHA
    6ec4386 View commit details
    Browse the repository at this point in the history
  2. src: add support to pass flags to dlopen

    This commit introduces an optional parameter for process.dlopen(),
    allowing to pass dlopen flags (using values from os.constants.dlopen).
    
    If no flags are passed, the default behavior is to load the library
    with RTLD_LAZY (perform lazy binding) and RTLD_LOCAL (symbols are
    available only locally).
    
    Signed-off-by: Ezequiel Garcia <[email protected]>
    ezequielgarcia committed Sep 8, 2017
    Configuration menu
    Copy the full SHA
    3ca00e7 View commit details
    Browse the repository at this point in the history