Deleted Added
full compact
genassym.c (105950) genassym.c (106542)
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/amd64/amd64/genassym.c 105950 2002-10-25 19:10:58Z peter $
37 * $FreeBSD: head/sys/amd64/amd64/genassym.c 106542 2002-11-07 01:34:23Z davidxu $
38 */
39
40#include "opt_compat.h"
41#include "opt_kstack_pages.h"
42
43#include <sys/param.h>
44#include <sys/systm.h>
45#include <sys/assym.h>

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

141
142ASSYM(PCB_SPARE, offsetof(struct pcb, __pcb_spare));
143ASSYM(PCB_FLAGS, offsetof(struct pcb, pcb_flags));
144ASSYM(PCB_SAVEFPU, offsetof(struct pcb, pcb_save));
145ASSYM(PCB_SAVEFPU_SIZE, sizeof(union savefpu));
146ASSYM(PCB_ONFAULT, offsetof(struct pcb, pcb_onfault));
147
148ASSYM(PCB_SIZE, sizeof(struct pcb));
38 */
39
40#include "opt_compat.h"
41#include "opt_kstack_pages.h"
42
43#include <sys/param.h>
44#include <sys/systm.h>
45#include <sys/assym.h>

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

141
142ASSYM(PCB_SPARE, offsetof(struct pcb, __pcb_spare));
143ASSYM(PCB_FLAGS, offsetof(struct pcb, pcb_flags));
144ASSYM(PCB_SAVEFPU, offsetof(struct pcb, pcb_save));
145ASSYM(PCB_SAVEFPU_SIZE, sizeof(union savefpu));
146ASSYM(PCB_ONFAULT, offsetof(struct pcb, pcb_onfault));
147
148ASSYM(PCB_SIZE, sizeof(struct pcb));
149ASSYM(PCB_VM86CALL, PCB_VM86CALL);
149
150ASSYM(TF_TRAPNO, offsetof(struct trapframe, tf_trapno));
151ASSYM(TF_ERR, offsetof(struct trapframe, tf_err));
152ASSYM(TF_CS, offsetof(struct trapframe, tf_cs));
153ASSYM(TF_EFLAGS, offsetof(struct trapframe, tf_eflags));
154ASSYM(SIGF_HANDLER, offsetof(struct sigframe, sf_ahu.sf_handler));
155#ifdef COMPAT_43
156ASSYM(SIGF_SC, offsetof(struct osigframe, sf_siginfo.si_sc));

--- 70 unchanged lines hidden ---
150
151ASSYM(TF_TRAPNO, offsetof(struct trapframe, tf_trapno));
152ASSYM(TF_ERR, offsetof(struct trapframe, tf_err));
153ASSYM(TF_CS, offsetof(struct trapframe, tf_cs));
154ASSYM(TF_EFLAGS, offsetof(struct trapframe, tf_eflags));
155ASSYM(SIGF_HANDLER, offsetof(struct sigframe, sf_ahu.sf_handler));
156#ifdef COMPAT_43
157ASSYM(SIGF_SC, offsetof(struct osigframe, sf_siginfo.si_sc));

--- 70 unchanged lines hidden ---