Deleted Added
full compact
dlopen.3 (108030) dlopen.3 (108087)
1.\" This source code is a product of Sun Microsystems, Inc. and is provided
2.\" for unrestricted use provided that this legend is included on all tape
3.\" media and as a part of the software program in whole or part. Users
4.\" may copy or modify this source code without charge, but are not authorized
5.\" to license or distribute it to anyone else except as part of a product or
6.\" program developed by the user.
7.\"
8.\" THIS PROGRAM CONTAINS SOURCE CODE COPYRIGHTED BY SUN MICROSYSTEMS, INC.

--- 16 unchanged lines hidden (view full) ---

25.\"
26.\" Sun Microsystems, Inc.
27.\" 2550 Garcia Avenue
28.\" Mountain View, California 94043
29.\"
30.\" Copyright (c) 1991 Sun Microsystems, Inc.
31.\"
32.\" @(#) dlopen.3 1.6 90/01/31 SMI
1.\" This source code is a product of Sun Microsystems, Inc. and is provided
2.\" for unrestricted use provided that this legend is included on all tape
3.\" media and as a part of the software program in whole or part. Users
4.\" may copy or modify this source code without charge, but are not authorized
5.\" to license or distribute it to anyone else except as part of a product or
6.\" program developed by the user.
7.\"
8.\" THIS PROGRAM CONTAINS SOURCE CODE COPYRIGHTED BY SUN MICROSYSTEMS, INC.

--- 16 unchanged lines hidden (view full) ---

25.\"
26.\" Sun Microsystems, Inc.
27.\" 2550 Garcia Avenue
28.\" Mountain View, California 94043
29.\"
30.\" Copyright (c) 1991 Sun Microsystems, Inc.
31.\"
32.\" @(#) dlopen.3 1.6 90/01/31 SMI
33.\" $FreeBSD: head/lib/libc/gen/dlopen.3 108030 2002-12-18 10:13:54Z ru $
33.\" $FreeBSD: head/lib/libc/gen/dlopen.3 108087 2002-12-19 09:40:28Z ru $
34.\"
35.Dd September 10, 2002
36.Os
37.Dt DLOPEN 3
38.Sh NAME
39.Nm dlopen , dlsym , dlfunc , dlerror , dlclose
40.Nd programmatic interface to the dynamic linker
41.Sh LIBRARY

--- 45 unchanged lines hidden (view full) ---

87.Fn dlopen
88operations on
89.Fa path
90is maintained.
91A null pointer supplied for
92.Fa path
93is interpreted as a reference to the main
94executable of the process.
34.\"
35.Dd September 10, 2002
36.Os
37.Dt DLOPEN 3
38.Sh NAME
39.Nm dlopen , dlsym , dlfunc , dlerror , dlclose
40.Nd programmatic interface to the dynamic linker
41.Sh LIBRARY

--- 45 unchanged lines hidden (view full) ---

87.Fn dlopen
88operations on
89.Fa path
90is maintained.
91A null pointer supplied for
92.Fa path
93is interpreted as a reference to the main
94executable of the process.
95The
95.Fa mode
96.Fa mode
97argument
96controls the way in which external function references from the
97loaded object are bound to their referents.
98It must contain one of the following values, possibly ORed with
99additional flags which will be described subsequently:
100.Bl -tag -width RTLD_LAZYX
101.It Dv RTLD_LAZY
102Each external function reference is resolved when the function is first
103called.

--- 238 unchanged lines hidden ---
98controls the way in which external function references from the
99loaded object are bound to their referents.
100It must contain one of the following values, possibly ORed with
101additional flags which will be described subsequently:
102.Bl -tag -width RTLD_LAZYX
103.It Dv RTLD_LAZY
104Each external function reference is resolved when the function is first
105called.

--- 238 unchanged lines hidden ---