Deleted Added
full compact
imgact_aout.c (65770) imgact_aout.c (68520)
1/*
2 * Copyright (c) 1993, David Greenman
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

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

18 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24 * SUCH DAMAGE.
25 *
1/*
2 * Copyright (c) 1993, David Greenman
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

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

18 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24 * SUCH DAMAGE.
25 *
26 * $FreeBSD: head/sys/kern/imgact_aout.c 65770 2000-09-12 09:49:08Z bp $
26 * $FreeBSD: head/sys/kern/imgact_aout.c 68520 2000-11-09 08:25:48Z marcel $
27 */
28
29#include <sys/param.h>
30#include <sys/resourcevar.h>
31#include <sys/exec.h>
32#include <sys/fcntl.h>
33#include <sys/imgact.h>
34#include <sys/imgact_aout.h>

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

64 0,
65 0,
66 0,
67 sendsig,
68 sigcode,
69 &szsigcode,
70 0,
71 "FreeBSD a.out",
27 */
28
29#include <sys/param.h>
30#include <sys/resourcevar.h>
31#include <sys/exec.h>
32#include <sys/fcntl.h>
33#include <sys/imgact.h>
34#include <sys/imgact_aout.h>

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

64 0,
65 0,
66 0,
67 sendsig,
68 sigcode,
69 &szsigcode,
70 0,
71 "FreeBSD a.out",
72 aout_coredump
72 aout_coredump,
73 NULL,
74 MINSIGSTKSZ
73};
74
75static int
76exec_aout_imgact(imgp)
77 struct image_params *imgp;
78{
79 const struct exec *a_out = (const struct exec *) imgp->image_header;
80 struct vmspace *vmspace;

--- 195 unchanged lines hidden ---
75};
76
77static int
78exec_aout_imgact(imgp)
79 struct image_params *imgp;
80{
81 const struct exec *a_out = (const struct exec *) imgp->image_header;
82 struct vmspace *vmspace;

--- 195 unchanged lines hidden ---