Update.
[glibc.git] / include / dlfcn.h
blobad445aef28b04df522c1f0bbbcc9cc546dd7f970
1 #ifndef _DLFCN_H
2 #include <dlfcn/dlfcn.h>
4 /* Now define the internal interfaces. */
5 extern void *__dlvsym (void *__handle, __const char *__name,
6 __const char *__version);
8 extern void *__libc_dlopen (__const char *__name);
9 extern void *__libc_dlsym (void *__map, __const char *__name);
10 extern int __libc_dlclose (void *__map);
12 /* Locate shared object containing the given address. */
13 extern int _dl_addr (const void *address, Dl_info *info)
14 internal_function;
16 /* Open the shared object NAME, relocate it, and run its initializer if it
17 hasn't already been run. MODE is as for `dlopen' (see <dlfcn.h>). If
18 the object is already opened, returns its existing map. */
19 extern void *_dl_open (const char *name, int mode, const void *caller)
20 internal_function;
22 /* Close an object previously opened by _dl_open. */
23 extern void _dl_close (void *map)
24 internal_function;
26 /* Look up NAME in shared object HANDLE (which may be RTLD_DEFAULT or
27 RTLD_NEXT). WHO is the calling function, for RTLD_NEXT. Returns
28 the symbol value, which may be NULL. */
29 extern void *_dl_sym (void *handle, const char *name, void *who)
30 internal_function;
32 /* Look up version VERSION of symbol NAME in shared object HANDLE
33 (which may be RTLD_DEFAULT or RTLD_NEXT). WHO is the calling
34 function, for RTLD_NEXT. Returns the symbol value, which may be
35 NULL. */
36 extern void *_dl_vsym (void *handle, const char *name, const char *version,
37 void *who)
38 internal_function;
40 /* Call OPERATE, catching errors from `dl_signal_error'. If there is no
41 error, *ERRSTRING is set to null. If there is an error, *ERRSTRING is
42 set to a string constructed from the strings passed to _dl_signal_error,
43 and the error code passed is the return value and *OBJNAME is set to
44 the object name which experienced the problems. ERRSTRING if nonzero
45 points to a malloc'ed string which the caller has to free after use.
46 ARGS is passed as argument to OPERATE. */
47 extern int _dl_catch_error (const char **objname, const char **errstring,
48 void (*operate) (void *),
49 void *args)
50 internal_function;
52 /* Helper function for <dlfcn.h> functions. Runs the OPERATE function via
53 _dl_catch_error. Returns zero for success, nonzero for failure; and
54 arranges for `dlerror' to return the error details.
55 ARGS is passed as argument to OPERATE. */
56 extern int _dlerror_run (void (*operate) (void *), void *args)
57 internal_function;
59 #endif