Deleted Added
full compact
proc.h (226112) proc.h (233291)
1/*-
2 * Copyright (c) 1991 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

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

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 * from: @(#)proc.h 7.1 (Berkeley) 5/15/91
1/*-
2 * Copyright (c) 1991 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

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

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 * from: @(#)proc.h 7.1 (Berkeley) 5/15/91
30 * $FreeBSD: head/sys/i386/include/proc.h 226112 2011-10-07 16:09:44Z kib $
30 * $FreeBSD: head/sys/i386/include/proc.h 233291 2012-03-22 04:52:51Z alc $
31 */
32
33#ifndef _MACHINE_PROC_H_
34#define _MACHINE_PROC_H_
35
36#include <machine/segments.h>
37
38struct proc_ldt {

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

46/*
47 * Machine-dependent part of the proc structure for i386.
48 * Table of MD locks:
49 * t - Descriptor tables lock
50 */
51struct mdthread {
52 int md_spinlock_count; /* (k) */
53 register_t md_saved_flags; /* (k) */
31 */
32
33#ifndef _MACHINE_PROC_H_
34#define _MACHINE_PROC_H_
35
36#include <machine/segments.h>
37
38struct proc_ldt {

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

46/*
47 * Machine-dependent part of the proc structure for i386.
48 * Table of MD locks:
49 * t - Descriptor tables lock
50 */
51struct mdthread {
52 int md_spinlock_count; /* (k) */
53 register_t md_saved_flags; /* (k) */
54 register_t md_spurflt_addr; /* (k) Spurious page fault address. */
54};
55
56struct mdproc {
57 struct proc_ldt *md_ldt; /* (t) per-process ldt */
58};
59
60#define KINFO_PROC_SIZE 768
61

--- 27 unchanged lines hidden ---
55};
56
57struct mdproc {
58 struct proc_ldt *md_ldt; /* (t) per-process ldt */
59};
60
61#define KINFO_PROC_SIZE 768
62

--- 27 unchanged lines hidden ---