Deleted Added
sdiff udiff text old ( 132263 ) new ( 133464 )
full compact
1/*-
2 * Copyright (c) 2002 Doug Rabson
3 * Copyright (c) 2003 Peter Wemm
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:

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

21 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
22 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
23 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
24 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
25 * SUCH DAMAGE.
26 */
27
28#include <sys/cdefs.h>
29__FBSDID("$FreeBSD: head/sys/compat/ia32/ia32_sysvec.c 132263 2004-07-16 20:53:00Z obrien $");
30
31#include "opt_compat.h"
32
33#define __ELF_WORD_SIZE 32
34
35#include <sys/param.h>
36#include <sys/exec.h>
37#include <sys/fcntl.h>

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

152 &ia32_freebsd_sysvec,
153 "/libexec/ld-elf32.so.1",
154 };
155
156SYSINIT(oia32, SI_SUB_EXEC, SI_ORDER_ANY,
157 (sysinit_cfunc_t) elf32_insert_brand_entry,
158 &ia32_brand_oinfo);
159
160/* XXX may be freebsd32 MI */
161static register_t *
162ia32_copyout_strings(struct image_params *imgp)
163{
164 int argc, envc;
165 u_int32_t *vectp;
166 char *stringp, *destp;
167 u_int32_t *stack_base;

--- 138 unchanged lines hidden ---