Deleted Added
full compact
smp.h (235622) smp.h (236772)
1/*-
2 * ----------------------------------------------------------------------------
3 * "THE BEER-WARE LICENSE" (Revision 42):
4 * <phk@FreeBSD.org> wrote this file. As long as you retain this notice you
5 * can do whatever you want with this stuff. If we meet some day, and you think
6 * this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp
7 * ----------------------------------------------------------------------------
8 *
1/*-
2 * ----------------------------------------------------------------------------
3 * "THE BEER-WARE LICENSE" (Revision 42):
4 * <phk@FreeBSD.org> wrote this file. As long as you retain this notice you
5 * can do whatever you want with this stuff. If we meet some day, and you think
6 * this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp
7 * ----------------------------------------------------------------------------
8 *
9 * $FreeBSD: head/sys/sys/smp.h 235622 2012-05-18 18:55:58Z iwasaki $
9 * $FreeBSD: head/sys/sys/smp.h 236772 2012-06-09 00:37:26Z iwasaki $
10 */
11
12#ifndef _SYS_SMP_H_
13#define _SYS_SMP_H_
14
15#ifdef _KERNEL
16
17#ifndef LOCORE

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

70 int l1count, int l1flags);
71struct cpu_group *smp_topo_find(struct cpu_group *top, int cpu);
72
73extern void (*cpustop_restartfunc)(void);
74extern int smp_active;
75extern int smp_cpus;
76extern volatile cpuset_t started_cpus;
77extern volatile cpuset_t stopped_cpus;
10 */
11
12#ifndef _SYS_SMP_H_
13#define _SYS_SMP_H_
14
15#ifdef _KERNEL
16
17#ifndef LOCORE

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

70 int l1count, int l1flags);
71struct cpu_group *smp_topo_find(struct cpu_group *top, int cpu);
72
73extern void (*cpustop_restartfunc)(void);
74extern int smp_active;
75extern int smp_cpus;
76extern volatile cpuset_t started_cpus;
77extern volatile cpuset_t stopped_cpus;
78extern volatile cpuset_t suspended_cpus;
78extern cpuset_t hlt_cpus_mask;
79extern cpuset_t logical_cpus_mask;
80#endif /* SMP */
81
82extern u_int mp_maxid;
83extern int mp_maxcpus;
84extern int mp_ncpus;
85extern volatile int smp_started;

--- 100 unchanged lines hidden ---
79extern cpuset_t hlt_cpus_mask;
80extern cpuset_t logical_cpus_mask;
81#endif /* SMP */
82
83extern u_int mp_maxid;
84extern int mp_maxcpus;
85extern int mp_ncpus;
86extern volatile int smp_started;

--- 100 unchanged lines hidden ---