logo

oasis-root

Compiled tree of Oasis Linux based on own branch at <https://hacktivis.me/git/oasis/> git clone https://anongit.hacktivis.me/git/oasis-root.git

dlfcn.h.0p (2376B)


  1. '\" et
  2. .TH dlfcn.h "0P" 2017 "IEEE/The Open Group" "POSIX Programmer's Manual"
  3. .\"
  4. .SH PROLOG
  5. This manual page is part of the POSIX Programmer's Manual.
  6. The Linux implementation of this interface may differ (consult
  7. the corresponding Linux manual page for details of Linux behavior),
  8. or the interface may not be implemented on Linux.
  9. .\"
  10. .SH NAME
  11. dlfcn.h
  12. \(em dynamic linking
  13. .SH SYNOPSIS
  14. .LP
  15. .nf
  16. #include <dlfcn.h>
  17. .fi
  18. .SH DESCRIPTION
  19. The
  20. .IR <dlfcn.h>
  21. header shall define at least the following symbolic constants for use
  22. in the construction of a
  23. \fIdlopen\fR()
  24. .IR mode
  25. argument:
  26. .IP RTLD_LAZY 14
  27. Relocations are performed at an implementation-defined time.
  28. .IP RTLD_NOW 14
  29. Relocations are performed when the object is loaded.
  30. .IP RTLD_GLOBAL 14
  31. All symbols are available for relocation processing of other modules.
  32. .IP RTLD_LOCAL 14
  33. All symbols are not made available for relocation processing by other
  34. modules.
  35. .P
  36. The following shall be declared as functions and may also be defined
  37. as macros. Function prototypes shall be provided.
  38. .sp
  39. .RS 4
  40. .nf
  41. int dlclose(void *);
  42. char *dlerror(void);
  43. void *dlopen(const char *, int);
  44. void *dlsym(void *restrict, const char *restrict);
  45. .fi
  46. .P
  47. .RE
  48. .LP
  49. .IR "The following sections are informative."
  50. .SH "APPLICATION USAGE"
  51. None.
  52. .SH RATIONALE
  53. None.
  54. .SH "FUTURE DIRECTIONS"
  55. None.
  56. .SH "SEE ALSO"
  57. The System Interfaces volume of POSIX.1\(hy2017,
  58. .IR "\fIdlclose\fR\^(\|)",
  59. .IR "\fIdlerror\fR\^(\|)",
  60. .IR "\fIdlopen\fR\^(\|)",
  61. .IR "\fIdlsym\fR\^(\|)"
  62. .\"
  63. .SH COPYRIGHT
  64. Portions of this text are reprinted and reproduced in electronic form
  65. from IEEE Std 1003.1-2017, Standard for Information Technology
  66. -- Portable Operating System Interface (POSIX), The Open Group Base
  67. Specifications Issue 7, 2018 Edition,
  68. Copyright (C) 2018 by the Institute of
  69. Electrical and Electronics Engineers, Inc and The Open Group.
  70. In the event of any discrepancy between this version and the original IEEE and
  71. The Open Group Standard, the original IEEE and The Open Group Standard
  72. is the referee document. The original Standard can be obtained online at
  73. http://www.opengroup.org/unix/online.html .
  74. .PP
  75. Any typographical or formatting errors that appear
  76. in this page are most likely
  77. to have been introduced during the conversion of the source files to
  78. man page format. To report such errors, see
  79. https://www.kernel.org/doc/man-pages/reporting_bugs.html .