dlfcn.h 3.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. /* User functions for run-time dynamic loading.
  2. Copyright (C) 1995-1999, 2000 Free Software Foundation, Inc.
  3. This file is part of the GNU C Library.
  4. The GNU C Library is free software; you can redistribute it and/or
  5. modify it under the terms of the GNU Lesser General Public
  6. License as published by the Free Software Foundation; either
  7. version 2.1 of the License, or (at your option) any later version.
  8. The GNU C Library is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  11. Lesser General Public License for more details.
  12. You should have received a copy of the GNU Lesser General Public
  13. License along with the GNU C Library; if not, write to the Free
  14. Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
  15. 02111-1307 USA. */
  16. #ifndef _DLFCN_H
  17. #define _DLFCN_H 1
  18. #include <features.h>
  19. #define __need_size_t
  20. #include <stddef.h>
  21. /* Collect various system dependent definitions and declarations. */
  22. #include <bits/dlfcn.h>
  23. #ifdef __USE_GNU
  24. /* If the first argument of `dlsym' or `dlvsym' is set to RTLD_NEXT
  25. the run-time address of the symbol called NAME in the next shared
  26. object is returned. The "next" relation is defined by the order
  27. the shared objects were loaded. */
  28. # define RTLD_NEXT ((void *) -1l)
  29. /* If the first argument to `dlsym' or `dlvsym' is set to RTLD_DEFAULT
  30. the run-time address of the symbol called NAME in the global scope
  31. is returned. */
  32. # define RTLD_DEFAULT ((void *) 0)
  33. #endif
  34. __BEGIN_DECLS
  35. /* Open the shared object FILE and map it in; return a handle that can be
  36. passed to `dlsym' to get symbol values from it. */
  37. extern void *dlopen (__const char *__file, int __mode) __THROW;
  38. /* Unmap and close a shared object opened by `dlopen'.
  39. The handle cannot be used again after calling `dlclose'. */
  40. extern int dlclose (void *__handle) __THROW;
  41. /* Find the run-time address in the shared object HANDLE refers to
  42. of the symbol called NAME. */
  43. extern void *dlsym (void *__restrict __handle,
  44. __const char *__restrict __name) __THROW;
  45. /* When any of the above functions fails, call this function
  46. to return a string describing the error. Each call resets
  47. the error string so that a following call returns null. */
  48. extern char *dlerror (void) __THROW;
  49. #ifdef __USE_GNU
  50. /* Structure containing information about object searched using
  51. `dladdr'. */
  52. typedef struct
  53. {
  54. __const char *dli_fname; /* File name of defining object. */
  55. void *dli_fbase; /* Load address of that object. */
  56. __const char *dli_sname; /* Name of nearest symbol. */
  57. void *dli_saddr; /* Exact value of nearest symbol. */
  58. } Dl_info;
  59. /* Fill in *INFO with the following information about ADDRESS.
  60. Returns 0 iff no shared object's segments contain that address. */
  61. extern int dladdr (const void *__address, Dl_info *__info) __THROW;
  62. /* Get information about the shared objects currently loaded */
  63. extern int dlinfo (void);
  64. #endif
  65. __END_DECLS
  66. #endif /* dlfcn.h */