Deleted Added
full compact
genassym.c (76117) genassym.c (79609)
1/*-
2 * Copyright (c) 1982, 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

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

29 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
30 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34 * SUCH DAMAGE.
35 *
36 * from: @(#)genassym.c 5.11 (Berkeley) 5/10/91
1/*-
2 * Copyright (c) 1982, 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

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

29 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
30 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34 * SUCH DAMAGE.
35 *
36 * from: @(#)genassym.c 5.11 (Berkeley) 5/10/91
37 * $FreeBSD: head/sys/i386/i386/genassym.c 76117 2001-04-29 02:45:39Z grog $
37 * $FreeBSD: head/sys/i386/i386/genassym.c 79609 2001-07-12 06:32:51Z peter $
38 */
39
40#include <sys/param.h>
41#include <sys/systm.h>
42#include <sys/assym.h>
43#include <sys/bio.h>
44#include <sys/buf.h>
45#include <sys/proc.h>

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

121ASSYM(PCB_DR3, offsetof(struct pcb, pcb_dr3));
122ASSYM(PCB_DR6, offsetof(struct pcb, pcb_dr6));
123ASSYM(PCB_DR7, offsetof(struct pcb, pcb_dr7));
124ASSYM(PCB_DBREGS, PCB_DBREGS);
125ASSYM(PCB_EXT, offsetof(struct pcb, pcb_ext));
126
127ASSYM(PCB_SPARE, offsetof(struct pcb, __pcb_spare));
128ASSYM(PCB_FLAGS, offsetof(struct pcb, pcb_flags));
38 */
39
40#include <sys/param.h>
41#include <sys/systm.h>
42#include <sys/assym.h>
43#include <sys/bio.h>
44#include <sys/buf.h>
45#include <sys/proc.h>

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

121ASSYM(PCB_DR3, offsetof(struct pcb, pcb_dr3));
122ASSYM(PCB_DR6, offsetof(struct pcb, pcb_dr6));
123ASSYM(PCB_DR7, offsetof(struct pcb, pcb_dr7));
124ASSYM(PCB_DBREGS, PCB_DBREGS);
125ASSYM(PCB_EXT, offsetof(struct pcb, pcb_ext));
126
127ASSYM(PCB_SPARE, offsetof(struct pcb, __pcb_spare));
128ASSYM(PCB_FLAGS, offsetof(struct pcb, pcb_flags));
129ASSYM(PCB_SAVEFPU, offsetof(struct pcb, pcb_savefpu));
130ASSYM(PCB_SAVEFPU_SIZE, sizeof(struct save87));
129ASSYM(PCB_SAVEFPU, offsetof(struct pcb, pcb_save));
130ASSYM(PCB_SAVEFPU_SIZE, sizeof(union savefpu));
131ASSYM(PCB_SAVE87_SIZE, sizeof(struct save87));
131ASSYM(PCB_ONFAULT, offsetof(struct pcb, pcb_onfault));
132
133#ifdef SMP
134ASSYM(PCB_SIZE, sizeof(struct pcb));
135#endif
136
137ASSYM(TF_TRAPNO, offsetof(struct trapframe, tf_trapno));
138ASSYM(TF_ERR, offsetof(struct trapframe, tf_err));

--- 67 unchanged lines hidden ---
132ASSYM(PCB_ONFAULT, offsetof(struct pcb, pcb_onfault));
133
134#ifdef SMP
135ASSYM(PCB_SIZE, sizeof(struct pcb));
136#endif
137
138ASSYM(TF_TRAPNO, offsetof(struct trapframe, tf_trapno));
139ASSYM(TF_ERR, offsetof(struct trapframe, tf_err));

--- 67 unchanged lines hidden ---