summaryrefslogtreecommitdiffstats
path: root/firmware/asm/thread.c
blob: 49e71d73af0bb9d8918f68f05855e440eb3383ee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#if defined(CPU_ARM)
  #include "arm/thread.c"
#elif defined(CPU_COLDFIRE)
  #include "m68k/thread.c"
#elif CONFIG_CPU == SH7034
  #include "sh/thread.c"
#elif defined(CPU_MIPS)
  #include "mips/thread.c"
#else

/* generic thread.c */

#if defined(HAVE_WIN32_FIBER_THREADS)
  #include "thread-win32.c"
#elif defined(HAVE_SIGALTSTACK_THREADS)
  #include "thread-unix.c"
#else
  #error Missing thread impl
#endif

#endif