Deleted Added
full compact
pcb.h (235622) pcb.h (236772)
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 235622 2012-05-18 18:55:58Z iwasaki $
33 * $FreeBSD: head/sys/i386/include/pcb.h 236772 2012-06-09 00:37:26Z iwasaki $
34 */
35
36#ifndef _I386_PCB_H_
37#define _I386_PCB_H_
38
39/*
40 * Intel 386 process control block
41 */

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

91 uint16_t pcb_ldt;
92 uint16_t pcb_tr;
93};
94
95#ifdef _KERNEL
96struct trapframe;
97
98void makectx(struct trapframe *, struct pcb *);
34 */
35
36#ifndef _I386_PCB_H_
37#define _I386_PCB_H_
38
39/*
40 * Intel 386 process control block
41 */

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

91 uint16_t pcb_ldt;
92 uint16_t pcb_tr;
93};
94
95#ifdef _KERNEL
96struct trapframe;
97
98void makectx(struct trapframe *, struct pcb *);
99void savectx(struct pcb *) __returns_twice;
100int suspendctx(struct pcb *) __returns_twice;
99int savectx(struct pcb *) __returns_twice;
101void resumectx(struct pcb *);
102#endif
103
104#endif /* _I386_PCB_H_ */
100void resumectx(struct pcb *);
101#endif
102
103#endif /* _I386_PCB_H_ */