/arch/mips/include/asm/cmp.h

https://bitbucket.org/thekraven/iscream_thunderc-2.6.35 · C++ Header · 18 lines · 11 code · 3 blank · 4 comment · 0 complexity · e6104aa53c9b6367d29610dd851e2a3f MD5 · raw file

  1. #ifndef _ASM_CMP_H
  2. #define _ASM_CMP_H
  3. /*
  4. * Definitions for CMP multitasking on MIPS cores
  5. */
  6. struct task_struct;
  7. extern void cmp_smp_setup(void);
  8. extern void cmp_smp_finish(void);
  9. extern void cmp_boot_secondary(int cpu, struct task_struct *t);
  10. extern void cmp_init_secondary(void);
  11. extern void cmp_cpus_done(void);
  12. extern void cmp_prepare_cpus(unsigned int max_cpus);
  13. /* This is platform specific */
  14. extern void cmp_send_ipi(int cpu, unsigned int action);
  15. #endif /* _ASM_CMP_H */