Deleted Added
full compact
genassym.c (239268) genassym.c (254461)
1/*-
2 * Copyright (c) 2004 Olivier Houchard
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

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

21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24 * SUCH DAMAGE.
25 *
26 */
27
28#include <sys/cdefs.h>
1/*-
2 * Copyright (c) 2004 Olivier Houchard
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

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

21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24 * SUCH DAMAGE.
25 *
26 */
27
28#include <sys/cdefs.h>
29__FBSDID("$FreeBSD: head/sys/arm/arm/genassym.c 239268 2012-08-15 03:03:03Z gonzo $");
29__FBSDID("$FreeBSD: head/sys/arm/arm/genassym.c 254461 2013-08-17 18:51:38Z andrew $");
30#include <sys/param.h>
31#include <sys/systm.h>
32#include <sys/assym.h>
33#include <sys/proc.h>
34#include <sys/mbuf.h>
35#include <sys/vmmeter.h>
36#include <vm/vm.h>
37#include <vm/vm_param.h>

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

108ASSYM(P_FLAG, offsetof(struct proc, p_flag));
109
110#ifdef ARM_TP_ADDRESS
111ASSYM(ARM_TP_ADDRESS, ARM_TP_ADDRESS);
112ASSYM(ARM_RAS_START, ARM_RAS_START);
113ASSYM(ARM_RAS_END, ARM_RAS_END);
114#endif
115
30#include <sys/param.h>
31#include <sys/systm.h>
32#include <sys/assym.h>
33#include <sys/proc.h>
34#include <sys/mbuf.h>
35#include <sys/vmmeter.h>
36#include <vm/vm.h>
37#include <vm/vm_param.h>

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

108ASSYM(P_FLAG, offsetof(struct proc, p_flag));
109
110#ifdef ARM_TP_ADDRESS
111ASSYM(ARM_TP_ADDRESS, ARM_TP_ADDRESS);
112ASSYM(ARM_RAS_START, ARM_RAS_START);
113ASSYM(ARM_RAS_END, ARM_RAS_END);
114#endif
115
116#ifdef ARM_VFP_SUPPORT
116#ifdef VFP
117ASSYM(PCB_VFPSTATE, offsetof(struct pcb, pcb_vfpstate));
118ASSYM(PCB_VFPCPU, offsetof(struct pcb, pcb_vfpcpu));
119
120ASSYM(PC_VFPCTHREAD, offsetof(struct pcpu, pc_vfpcthread));
121ASSYM(PC_CPU, offsetof(struct pcpu, pc_cpu));
122
123ASSYM(PC_CURPMAP, offsetof(struct pcpu, pc_curpmap));
124#endif

--- 16 unchanged lines hidden ---
117ASSYM(PCB_VFPSTATE, offsetof(struct pcb, pcb_vfpstate));
118ASSYM(PCB_VFPCPU, offsetof(struct pcb, pcb_vfpcpu));
119
120ASSYM(PC_VFPCTHREAD, offsetof(struct pcpu, pc_vfpcthread));
121ASSYM(PC_CPU, offsetof(struct pcpu, pc_cpu));
122
123ASSYM(PC_CURPMAP, offsetof(struct pcpu, pc_curpmap));
124#endif

--- 16 unchanged lines hidden ---