blob: 4412d5d9c26ba7376a738ba419f2b544b88486fe [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef __UM_SMP_H
2#define __UM_SMP_H
3
4#ifdef CONFIG_SMP
5
6#include "linux/config.h"
7#include "linux/bitops.h"
8#include "asm/current.h"
9#include "linux/cpumask.h"
10
11#define smp_processor_id() (current_thread->cpu)
12#define cpu_logical_map(n) (n)
13#define cpu_number_map(n) (n)
14#define PROC_CHANGE_PENALTY 15 /* Pick a number, any number */
15extern int hard_smp_processor_id(void);
16#define NO_PROC_ID -1
17
18extern int ncpus;
19
20
21extern inline void smp_cpus_done(unsigned int maxcpus)
22{
23}
24
25#endif
26
27#endif