Deleted Added
full compact
genassym.c (87702) genassym.c (88088)
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 87702 2001-12-11 23:33:44Z jhb $
37 * $FreeBSD: head/sys/ia64/ia64/genassym.c 88088 2001-12-18 00:27:18Z jhb $
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>

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

66ASSYM(PC_CURTHREAD, offsetof(struct pcpu, pc_curthread));
67ASSYM(PC_FPCURTHREAD, offsetof(struct pcpu, pc_fpcurthread));
68ASSYM(PC_CURPCB, offsetof(struct pcpu, pc_curpcb));
69ASSYM(PC_SWITCHTIME, offsetof(struct pcpu, pc_switchtime));
70ASSYM(PC_CPUID, offsetof(struct pcpu, pc_cpuid));
71
72ASSYM(MTX_LOCK, offsetof(struct mtx, mtx_lock));
73ASSYM(MTX_RECURSE, offsetof(struct mtx, mtx_recurse));
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>

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

66ASSYM(PC_CURTHREAD, offsetof(struct pcpu, pc_curthread));
67ASSYM(PC_FPCURTHREAD, offsetof(struct pcpu, pc_fpcurthread));
68ASSYM(PC_CURPCB, offsetof(struct pcpu, pc_curpcb));
69ASSYM(PC_SWITCHTIME, offsetof(struct pcpu, pc_switchtime));
70ASSYM(PC_CPUID, offsetof(struct pcpu, pc_cpuid));
71
72ASSYM(MTX_LOCK, offsetof(struct mtx, mtx_lock));
73ASSYM(MTX_RECURSE, offsetof(struct mtx, mtx_recurse));
74ASSYM(MTX_SAVECRIT, offsetof(struct mtx, mtx_savecrit));
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));
80ASSYM(TD_MD_FLAGS, offsetof(struct thread, td_md.md_flags));
81
82ASSYM(VM_MAXUSER_ADDRESS, VM_MAXUSER_ADDRESS);

--- 82 unchanged lines hidden ---
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));
79ASSYM(TD_MD_FLAGS, offsetof(struct thread, td_md.md_flags));
80
81ASSYM(VM_MAXUSER_ADDRESS, VM_MAXUSER_ADDRESS);

--- 82 unchanged lines hidden ---