Apache Portable Runtime
Typedefs | Functions
Dynamic Object Handling
Apache Portability Runtime library

Typedefs

typedef struct apr_dso_handle_t apr_dso_handle_t
typedef void * apr_dso_handle_sym_t

Functions

apr_status_t apr_dso_load (apr_dso_handle_t **res_handle, const char *path, apr_pool_t *ctx)
apr_status_t apr_dso_unload (apr_dso_handle_t *handle)
apr_status_t apr_dso_sym (apr_dso_handle_sym_t *ressym, apr_dso_handle_t *handle, const char *symname)
const char * apr_dso_error (apr_dso_handle_t *dso, char *buf, apr_size_t bufsize)

Typedef Documentation

typedef void* apr_dso_handle_sym_t

Structure for referencing symbols from dynamic objects

Structure for referencing dynamic objects


Function Documentation

const char* apr_dso_error ( apr_dso_handle_t dso,
char *  buf,
apr_size_t  bufsize 
)

Report more information when a DSO function fails.

Parameters:
dsoThe dso handle that has been opened
bufLocation to store the dso error
bufsizeThe size of the provided buffer
apr_status_t apr_dso_load ( apr_dso_handle_t **  res_handle,
const char *  path,
apr_pool_t ctx 
)

Load a DSO library.

Parameters:
res_handleLocation to store new handle for the DSO.
pathPath to the DSO library
ctxPool to use.
Bug:
We aught to provide an alternative to RTLD_GLOBAL, which is the only supported method of loading DSOs today.
apr_status_t apr_dso_sym ( apr_dso_handle_sym_t ressym,
apr_dso_handle_t handle,
const char *  symname 
)

Load a symbol from a DSO handle.

Parameters:
ressymLocation to store the loaded symbol
handlehandle to load the symbol from.
symnameName of the symbol to load.
apr_status_t apr_dso_unload ( apr_dso_handle_t handle)

Close a DSO library.

Parameters:
handlehandle to close.
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Defines