Deleted Added
full compact
pcb.h (237027) pcb.h (270850)
1/*-
2 * Copyright (c) 1990 The Regents of the University of California.
3 * All rights reserved.
4 *
5 * This code is derived from software contributed to Berkeley by
6 * William Jolitz.
7 *
8 * Redistribution and use in source and binary forms, with or without

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

25 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30 * SUCH DAMAGE.
31 *
32 * from: @(#)pcb.h 5.10 (Berkeley) 5/12/91
1/*-
2 * Copyright (c) 1990 The Regents of the University of California.
3 * All rights reserved.
4 *
5 * This code is derived from software contributed to Berkeley by
6 * William Jolitz.
7 *
8 * Redistribution and use in source and binary forms, with or without

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

25 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30 * SUCH DAMAGE.
31 *
32 * from: @(#)pcb.h 5.10 (Berkeley) 5/12/91
33 * $FreeBSD: head/sys/i386/include/pcb.h 237027 2012-06-13 21:03:01Z jkim $
33 * $FreeBSD: head/sys/i386/include/pcb.h 270850 2014-08-30 17:48:38Z jhb $
34 */
35
36#ifndef _I386_PCB_H_
37#define _I386_PCB_H_
38
39/*
40 * Intel 386 process control block
41 */

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

85 int pcb_psl; /* process status long */
86 u_long pcb_vm86[2]; /* vm86bios scratch space */
87 union savefpu *pcb_save;
88
89 struct region_descriptor pcb_gdt;
90 struct region_descriptor pcb_idt;
91 uint16_t pcb_ldt;
92 uint16_t pcb_tr;
34 */
35
36#ifndef _I386_PCB_H_
37#define _I386_PCB_H_
38
39/*
40 * Intel 386 process control block
41 */

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

85 int pcb_psl; /* process status long */
86 u_long pcb_vm86[2]; /* vm86bios scratch space */
87 union savefpu *pcb_save;
88
89 struct region_descriptor pcb_gdt;
90 struct region_descriptor pcb_idt;
91 uint16_t pcb_ldt;
92 uint16_t pcb_tr;
93
94 union savefpu pcb_fpususpend;
93};
94
95#ifdef _KERNEL
96struct trapframe;
97
98void makectx(struct trapframe *, struct pcb *);
99int savectx(struct pcb *) __returns_twice;
100void resumectx(struct pcb *) __fastcall;
101#endif
102
103#endif /* _I386_PCB_H_ */
95};
96
97#ifdef _KERNEL
98struct trapframe;
99
100void makectx(struct trapframe *, struct pcb *);
101int savectx(struct pcb *) __returns_twice;
102void resumectx(struct pcb *) __fastcall;
103#endif
104
105#endif /* _I386_PCB_H_ */