Deleted Added
full compact
svr4_sysvec.c (65302) svr4_sysvec.c (68520)
1/*
2 * Copyright (c) 1998 Mark Newton
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

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

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

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

22 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
23 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
24 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
28 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 *
30 * $FreeBSD: head/sys/compat/svr4/svr4_sysvec.c 65302 2000-08-31 22:54:09Z obrien $
30 * $FreeBSD: head/sys/compat/svr4/svr4_sysvec.c 68520 2000-11-09 08:25:48Z marcel $
31 */
32
33/* XXX we use functions that might not exist. */
34#include "opt_compat.h"
35
36#ifndef COMPAT_43
37#error "Unable to compile SVR4-emulator due to missing COMPAT_43 option!"
38#endif

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

172 bsd_to_svr4_errno,
173 0,
174 svr4_fixup,
175 svr4_sendsig,
176 svr4_sigcode,
177 &svr4_szsigcode,
178 NULL,
179 "SVR4",
31 */
32
33/* XXX we use functions that might not exist. */
34#include "opt_compat.h"
35
36#ifndef COMPAT_43
37#error "Unable to compile SVR4-emulator due to missing COMPAT_43 option!"
38#endif

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

172 bsd_to_svr4_errno,
173 0,
174 svr4_fixup,
175 svr4_sendsig,
176 svr4_sigcode,
177 &svr4_szsigcode,
178 NULL,
179 "SVR4",
180 elf_coredump
180 elf_coredump,
181 NULL,
182 SVR4_MINSIGSTKSZ
181};
182
183Elf32_Brandinfo svr4_brand = {
184 ELFOSABI_SOLARIS, /* XXX Or should we use ELFOSABI_SYSV here? */
185 svr4_emul_path,
186 "/lib/libc.so.1",
187 &svr4_sysvec
188};

--- 217 unchanged lines hidden ---
183};
184
185Elf32_Brandinfo svr4_brand = {
186 ELFOSABI_SOLARIS, /* XXX Or should we use ELFOSABI_SYSV here? */
187 svr4_emul_path,
188 "/lib/libc.so.1",
189 &svr4_sysvec
190};

--- 217 unchanged lines hidden ---