Deleted Added
full compact
sysent.h (237431) sysent.h (237433)
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 237431 2012-06-22 06:39:28Z kib $
29 * $FreeBSD: head/sys/sys/sysent.h 237433 2012-06-22 07:06:40Z kib $
30 */
31
32#ifndef _SYS_SYSENT_H_
33#define _SYS_SYSENT_H_
34
35#include <bsm/audit.h>
36
37struct rlimit;

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

119 u_int sv_flags;
120 void (*sv_set_syscall_retval)(struct thread *, int);
121 int (*sv_fetch_syscall_args)(struct thread *, struct
122 syscall_args *);
123 const char **sv_syscallnames;
124 vm_offset_t sv_shared_page_base;
125 vm_offset_t sv_shared_page_len;
126 vm_offset_t sv_sigcode_base;
30 */
31
32#ifndef _SYS_SYSENT_H_
33#define _SYS_SYSENT_H_
34
35#include <bsm/audit.h>
36
37struct rlimit;

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

119 u_int sv_flags;
120 void (*sv_set_syscall_retval)(struct thread *, int);
121 int (*sv_fetch_syscall_args)(struct thread *, struct
122 syscall_args *);
123 const char **sv_syscallnames;
124 vm_offset_t sv_shared_page_base;
125 vm_offset_t sv_shared_page_len;
126 vm_offset_t sv_sigcode_base;
127 vm_offset_t sv_timekeep_base;
128 int sv_timekeep_off;
129 int sv_timekeep_curr;
130 uint32_t sv_timekeep_gen;
127 void *sv_shared_page_obj;
128 void (*sv_schedtail)(struct thread *);
129};
130
131#define SV_ILP32 0x000100
132#define SV_LP64 0x000200
133#define SV_IA32 0x004000
134#define SV_AOUT 0x008000

--- 139 unchanged lines hidden ---
131 void *sv_shared_page_obj;
132 void (*sv_schedtail)(struct thread *);
133};
134
135#define SV_ILP32 0x000100
136#define SV_LP64 0x000200
137#define SV_IA32 0x004000
138#define SV_AOUT 0x008000

--- 139 unchanged lines hidden ---