Deleted Added
full compact
sysent.h (205321) sysent.h (205642)
1/*-
2 * Copyright (c) 1982, 1988, 1991 The Regents of the University of California.
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

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

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

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

21 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27 * SUCH DAMAGE.
28 *
29 * $FreeBSD: head/sys/sys/sysent.h 205321 2010-03-19 10:56:30Z kib $
29 * $FreeBSD: head/sys/sys/sysent.h 205642 2010-03-25 14:24:00Z nwhitehorn $
30 */
31
32#ifndef _SYS_SYSENT_H_
33#define _SYS_SYSENT_H_
34
35#include <bsm/audit.h>
36
37struct rlimit;

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

93 int sv_minsigstksz; /* minimum signal stack size */
94 int sv_pagesize; /* pagesize */
95 vm_offset_t sv_minuser; /* VM_MIN_ADDRESS */
96 vm_offset_t sv_maxuser; /* VM_MAXUSER_ADDRESS */
97 vm_offset_t sv_usrstack; /* USRSTACK */
98 vm_offset_t sv_psstrings; /* PS_STRINGS */
99 int sv_stackprot; /* vm protection for stack */
100 register_t *(*sv_copyout_strings)(struct image_params *);
30 */
31
32#ifndef _SYS_SYSENT_H_
33#define _SYS_SYSENT_H_
34
35#include <bsm/audit.h>
36
37struct rlimit;

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

93 int sv_minsigstksz; /* minimum signal stack size */
94 int sv_pagesize; /* pagesize */
95 vm_offset_t sv_minuser; /* VM_MIN_ADDRESS */
96 vm_offset_t sv_maxuser; /* VM_MAXUSER_ADDRESS */
97 vm_offset_t sv_usrstack; /* USRSTACK */
98 vm_offset_t sv_psstrings; /* PS_STRINGS */
99 int sv_stackprot; /* vm protection for stack */
100 register_t *(*sv_copyout_strings)(struct image_params *);
101 void (*sv_setregs)(struct thread *, u_long, u_long, u_long);
101 void (*sv_setregs)(struct thread *, struct image_params *,
102 u_long);
102 void (*sv_fixlimit)(struct rlimit *, int);
103 u_long *sv_maxssiz;
104 u_int sv_flags;
105};
106
107#define SV_ILP32 0x000100
108#define SV_LP64 0x000200
109#define SV_IA32 0x004000

--- 97 unchanged lines hidden ---
103 void (*sv_fixlimit)(struct rlimit *, int);
104 u_long *sv_maxssiz;
105 u_int sv_flags;
106};
107
108#define SV_ILP32 0x000100
109#define SV_LP64 0x000200
110#define SV_IA32 0x004000

--- 97 unchanged lines hidden ---