minix/kernel/smp.c

10 lines
146 B
C
Raw Normal View History

#include "smp.h"
unsigned ncpus;
unsigned ht_per_core;
unsigned bsp_cpu_id;
struct cpu cpus[CONFIG_MAX_CPUS];
SPINLOCK_DEFINE(big_kernel_lock)