Deleted Added
full compact
link.5 (68716) link.5 (70466)
1.\" Copyright (c) 1993 Paul Kranenburg
2.\" All rights reserved.
3.\"
4.\" Redistribution and use in source and binary forms, with or without
5.\" modification, are permitted provided that the following conditions
6.\" are met:
7.\" 1. Redistributions of source code must retain the above copyright
8.\" notice, this list of conditions and the following disclaimer.

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

21.\" IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
22.\" INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
23.\" NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24.\" DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25.\" THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26.\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
27.\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28.\"
1.\" Copyright (c) 1993 Paul Kranenburg
2.\" All rights reserved.
3.\"
4.\" Redistribution and use in source and binary forms, with or without
5.\" modification, are permitted provided that the following conditions
6.\" are met:
7.\" 1. Redistributions of source code must retain the above copyright
8.\" notice, this list of conditions and the following disclaimer.

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

21.\" IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
22.\" INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
23.\" NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24.\" DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25.\" THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26.\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
27.\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28.\"
29.\" $FreeBSD: head/share/man/man5/link.5 68716 2000-11-14 11:20:58Z ru $
29.\" $FreeBSD: head/share/man/man5/link.5 70466 2000-12-29 09:18:45Z ru $
30.\"
31.Dd October 23, 1993
32.Dt LINK 5
33.Os
34.Sh NAME
35.Nm link
36.Nd dynamic loader and link editor interface
37.Sh SYNOPSIS

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

471.Bd -literal -offset indent
472struct ld_entry {
473 void *(*dlopen)(char *, int);
474 int (*dlclose)(void *);
475 void *(*dlsym)(void *, char *);
476 char *(*dlerror)(void);
477};
478.Ed
30.\"
31.Dd October 23, 1993
32.Dt LINK 5
33.Os
34.Sh NAME
35.Nm link
36.Nd dynamic loader and link editor interface
37.Sh SYNOPSIS

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

471.Bd -literal -offset indent
472struct ld_entry {
473 void *(*dlopen)(char *, int);
474 int (*dlclose)(void *);
475 void *(*dlsym)(void *, char *);
476 char *(*dlerror)(void);
477};
478.Ed
479
479.Pp
480The
481.Fa crt_ldso
482structure defines the interface between the start-up code in crt0 and
483.Nm ld.so .
484.Bd -literal -offset indent
485struct crt_ldso {
486 int crt_ba;
487 int crt_dzfd;

--- 117 unchanged lines hidden ---
480The
481.Fa crt_ldso
482structure defines the interface between the start-up code in crt0 and
483.Nm ld.so .
484.Bd -literal -offset indent
485struct crt_ldso {
486 int crt_ba;
487 int crt_dzfd;

--- 117 unchanged lines hidden ---