Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v2.6.16-rc6 30 lines 550 B view raw
1#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 raw_smp_processor_id() (current_thread->cpu) 12 13#define cpu_logical_map(n) (n) 14#define cpu_number_map(n) (n) 15#define PROC_CHANGE_PENALTY 15 /* Pick a number, any number */ 16extern int hard_smp_processor_id(void); 17#define NO_PROC_ID -1 18 19extern int ncpus; 20 21 22extern inline void smp_cpus_done(unsigned int maxcpus) 23{ 24} 25 26extern struct task_struct *idle_threads[NR_CPUS]; 27 28#endif 29 30#endif