Skip to content
Snippets Groups Projects
Commit 51d8f671 authored by Vivek Das Mohapatra's avatar Vivek Das Mohapatra
Browse files

Ibid: should have been merged with previous commit.

parent 6764dd75
No related branches found
No related tags found
1 merge request!311Build capsule-capture-libs from a bundled copy of libcapsule
...@@ -136,6 +136,8 @@ capsule capsule_init (const char *soname); ...@@ -136,6 +136,8 @@ capsule capsule_init (const char *soname);
* @file: SONAME or filename to be opened * @file: SONAME or filename to be opened
* @flag: `dlopen` flags to pass to the real `dlopen` call * @flag: `dlopen` flags to pass to the real `dlopen` call
* *
* Returns: A handle as if for `dlopen`
*
* An implementation of dlopen suitable to be called from inside a * An implementation of dlopen suitable to be called from inside a
* namespace. Load @file into @cap namespace. * namespace. Load @file into @cap namespace.
* *
...@@ -154,11 +156,9 @@ capsule capsule_init (const char *soname); ...@@ -154,11 +156,9 @@ capsule capsule_init (const char *soname);
* *
* Limitations: RTLD_GLOBAL is not supported in @flag. This is a glibc * Limitations: RTLD_GLOBAL is not supported in @flag. This is a glibc
* limitation in the dlmopen() implementation. * limitation in the dlmopen() implementation.
*
* Returns: A handle as if for `dlopen`
*/ */
_CAPSULE_PUBLIC _CAPSULE_PUBLIC
void *capsule_shim_dlopen(const capsule capsule, const char *file, int flag); void *capsule_shim_dlopen (const capsule cap, const char *file, int flag);
/** /**
* capsule_external_dlsym: * capsule_external_dlsym:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment