Deleted Added
full compact
imgact.h (1549) imgact.h (2056)
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

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

25 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31 * SUCH DAMAGE.
32 *
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

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

25 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31 * SUCH DAMAGE.
32 *
33 * $Id: imgact.h,v 1.1 1993/12/12 12:31:40 davidg Exp $
33 * $Id: imgact.h,v 1.3 1994/05/25 09:14:16 rgrimes Exp $
34 */
35
36#ifndef __h_imgact
37#define __h_imgact 1
38
34 */
35
36#ifndef __h_imgact
37#define __h_imgact 1
38
39#include "proc.h"
40#include "namei.h"
41#include "vnode.h"
39#include <sys/proc.h>
40#include <sys/namei.h>
41#include <sys/vnode.h>
42
43struct image_params {
44 struct proc *proc; /* our process struct */
45 struct execve_args *uap; /* syscall arguments */
46 struct vnode *vnodep; /* pointer to vnode of file to exec */
47 struct vattr *attr; /* attributes of file */
48 const char *image_header; /* head of file to exec */
49 char *stringbase; /* base address of tmp string storage */

--- 16 unchanged lines hidden ---
42
43struct image_params {
44 struct proc *proc; /* our process struct */
45 struct execve_args *uap; /* syscall arguments */
46 struct vnode *vnodep; /* pointer to vnode of file to exec */
47 struct vattr *attr; /* attributes of file */
48 const char *image_header; /* head of file to exec */
49 char *stringbase; /* base address of tmp string storage */

--- 16 unchanged lines hidden ---