rockbox/firmware/asm/thread.c
Solomon Peachy 092c340a20 [1/4] Remove SH support and all archos targets
This removes all code specific to SH targets

Change-Id: I7980523785d2596e65c06430f4638eec74a06061
2020-07-24 21:20:13 +00:00

17 lines
448 B
C

/* First some generic implementations */
#if defined(HAVE_WIN32_FIBER_THREADS)
#include "thread-win32.c"
#elif defined(HAVE_SIGALTSTACK_THREADS)
#include "thread-unix.c"
/* Now the CPU-specific implementations */
#elif defined(CPU_ARM)
#include "arm/thread.c"
#elif defined(CPU_COLDFIRE)
#include "m68k/thread.c"
#elif defined(CPU_MIPS)
#include "mips/thread.c"
#else
/* Nothing? OK, give up */
#error Missing thread impl
#endif