smp.h
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:2k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. #ifndef __LINUX_SMP_H
  2. #define __LINUX_SMP_H
  3. /*
  4.  * Generic SMP support
  5.  * Alan Cox. <alan@redhat.com>
  6.  */
  7. #include <linux/config.h>
  8. #ifdef CONFIG_SMP
  9. #include <linux/kernel.h>
  10. #include <asm/smp.h>
  11. /*
  12.  * main cross-CPU interfaces, handles INIT, TLB flush, STOP, etc.
  13.  * (defined in asm header):
  14.  */ 
  15. /*
  16.  * stops all CPUs but the current one:
  17.  */
  18. extern void smp_send_stop(void);
  19. /*
  20.  * sends a 'reschedule' event to another CPU:
  21.  */
  22. extern void FASTCALL(smp_send_reschedule(int cpu));
  23. /*
  24.  * Boot processor call to load the other CPU's
  25.  */
  26. extern void smp_boot_cpus(void);
  27. /*
  28.  * Processor call in. Must hold processors until ..
  29.  */
  30. extern void smp_callin(void);
  31. /*
  32.  * Multiprocessors may now schedule
  33.  */
  34. extern void smp_commence(void);
  35. /*
  36.  * Call a function on all other processors
  37.  */
  38. extern int smp_call_function (void (*func) (void *info), void *info,
  39.       int retry, int wait);
  40. /*
  41.  * True once the per process idle is forked
  42.  */
  43. extern int smp_threads_ready;
  44. extern int smp_num_cpus;
  45. extern volatile unsigned long smp_msg_data;
  46. extern volatile int smp_src_cpu;
  47. extern volatile int smp_msg_id;
  48. #define MSG_ALL_BUT_SELF 0x8000 /* Assume <32768 CPU's */
  49. #define MSG_ALL 0x8001
  50. #define MSG_INVALIDATE_TLB 0x0001 /* Remote processor TLB invalidate */
  51. #define MSG_STOP_CPU 0x0002 /* Sent to shut down slave CPU's
  52.  * when rebooting
  53.  */
  54. #define MSG_RESCHEDULE 0x0003 /* Reschedule request from master CPU*/
  55. #define MSG_CALL_FUNCTION       0x0004  /* Call function on all other CPUs */
  56. #else
  57. /*
  58.  * These macros fold the SMP functionality into a single CPU system
  59.  */
  60.  
  61. #define smp_num_cpus 1
  62. #define smp_processor_id() 0
  63. #define hard_smp_processor_id() 0
  64. #define smp_threads_ready 1
  65. #define kernel_lock()
  66. #define cpu_logical_map(cpu) 0
  67. #define cpu_number_map(cpu) 0
  68. #define smp_call_function(func,info,retry,wait) ({ 0; })
  69. #define cpu_online_map 1
  70. #endif
  71. #endif