Deleted Added
full compact
genassym.c (91635) genassym.c (92281)
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/ia64/ia64/genassym.c 91635 2002-03-04 12:47:47Z dfr $
37 * $FreeBSD: head/sys/ia64/ia64/genassym.c 92281 2002-03-14 19:20:24Z dfr $
38 */
39
40#include <sys/param.h>
41#include <sys/systm.h>
42#include <sys/assym.h>
43#include <sys/proc.h>
44#include <sys/bio.h>
45#include <sys/buf.h>

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

63#include <net/if.h>
64#include <netinet/in.h>
65
66ASSYM(PC_CURTHREAD, offsetof(struct pcpu, pc_curthread));
67ASSYM(PC_IDLETHREAD, offsetof(struct pcpu, pc_idlethread));
68ASSYM(PC_FPCURTHREAD, offsetof(struct pcpu, pc_fpcurthread));
69ASSYM(PC_CURPCB, offsetof(struct pcpu, pc_curpcb));
70ASSYM(PC_CPUID, offsetof(struct pcpu, pc_cpuid));
38 */
39
40#include <sys/param.h>
41#include <sys/systm.h>
42#include <sys/assym.h>
43#include <sys/proc.h>
44#include <sys/bio.h>
45#include <sys/buf.h>

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

63#include <net/if.h>
64#include <netinet/in.h>
65
66ASSYM(PC_CURTHREAD, offsetof(struct pcpu, pc_curthread));
67ASSYM(PC_IDLETHREAD, offsetof(struct pcpu, pc_idlethread));
68ASSYM(PC_FPCURTHREAD, offsetof(struct pcpu, pc_fpcurthread));
69ASSYM(PC_CURPCB, offsetof(struct pcpu, pc_curpcb));
70ASSYM(PC_CPUID, offsetof(struct pcpu, pc_cpuid));
71ASSYM(PC_CURRENT_PMAP, offsetof(struct pcpu, pc_current_pmap));
71
72ASSYM(MTX_LOCK, offsetof(struct mtx, mtx_lock));
73ASSYM(MTX_RECURSE, offsetof(struct mtx, mtx_recurse));
74ASSYM(MTX_UNOWNED, MTX_UNOWNED);
75
76ASSYM(TD_PROC, offsetof(struct thread, td_proc));
77ASSYM(TD_PCB, offsetof(struct thread, td_pcb));
78ASSYM(TD_KSTACK, offsetof(struct thread, td_kstack));

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

125ASSYM(PCB_OLD_UNAT, offsetof(struct pcb, pcb_old_unat));
126ASSYM(PCB_SP, offsetof(struct pcb, pcb_sp));
127ASSYM(PCB_PFS, offsetof(struct pcb, pcb_pfs));
128ASSYM(PCB_BSPSTORE, offsetof(struct pcb, pcb_bspstore));
129
130ASSYM(PCB_UNAT, offsetof(struct pcb, pcb_unat));
131ASSYM(PCB_RNAT, offsetof(struct pcb, pcb_rnat));
132ASSYM(PCB_PR, offsetof(struct pcb, pcb_pr));
72
73ASSYM(MTX_LOCK, offsetof(struct mtx, mtx_lock));
74ASSYM(MTX_RECURSE, offsetof(struct mtx, mtx_recurse));
75ASSYM(MTX_UNOWNED, MTX_UNOWNED);
76
77ASSYM(TD_PROC, offsetof(struct thread, td_proc));
78ASSYM(TD_PCB, offsetof(struct thread, td_pcb));
79ASSYM(TD_KSTACK, offsetof(struct thread, td_kstack));

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

126ASSYM(PCB_OLD_UNAT, offsetof(struct pcb, pcb_old_unat));
127ASSYM(PCB_SP, offsetof(struct pcb, pcb_sp));
128ASSYM(PCB_PFS, offsetof(struct pcb, pcb_pfs));
129ASSYM(PCB_BSPSTORE, offsetof(struct pcb, pcb_bspstore));
130
131ASSYM(PCB_UNAT, offsetof(struct pcb, pcb_unat));
132ASSYM(PCB_RNAT, offsetof(struct pcb, pcb_rnat));
133ASSYM(PCB_PR, offsetof(struct pcb, pcb_pr));
134ASSYM(PCB_PMAP, offsetof(struct pcb, pcb_pmap));
133
134ASSYM(PCB_ONFAULT, offsetof(struct pcb, pcb_onfault));
135
136ASSYM(PCB_HIGHFP, offsetof(struct pcb, pcb_highfp));
137
138ASSYM(UC_MCONTEXT_MC_AR_BSP, offsetof(ucontext_t, uc_mcontext.mc_ar_bsp));
139ASSYM(UC_MCONTEXT_MC_AR_RNAT, offsetof(ucontext_t, uc_mcontext.mc_ar_rnat));
140

--- 24 unchanged lines hidden ---
135
136ASSYM(PCB_ONFAULT, offsetof(struct pcb, pcb_onfault));
137
138ASSYM(PCB_HIGHFP, offsetof(struct pcb, pcb_highfp));
139
140ASSYM(UC_MCONTEXT_MC_AR_BSP, offsetof(ucontext_t, uc_mcontext.mc_ar_bsp));
141ASSYM(UC_MCONTEXT_MC_AR_RNAT, offsetof(ucontext_t, uc_mcontext.mc_ar_rnat));
142

--- 24 unchanged lines hidden ---