diff options
author | Michael Sevakis <jethead71@rockbox.org> | 2011-12-10 20:47:59 +0000 |
---|---|---|
committer | Michael Sevakis <jethead71@rockbox.org> | 2011-12-10 20:47:59 +0000 |
commit | 09722dd28db02bf7cb34d1a7d42729ce66ebe302 (patch) | |
tree | b043f0af1c543c1d762405d688bc5a35d4c847c6 /firmware | |
parent | 32d2cb3e8a480ef22479f70be69327a2e24deefc (diff) |
thread.c includes gcc_extensions.h and thread-XXX.c files are includes inside thread.c therefore do not require their own.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@31206 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware')
-rw-r--r-- | firmware/target/arm/thread-arm.c | 2 | ||||
-rw-r--r-- | firmware/target/arm/thread-pp.c | 2 | ||||
-rw-r--r-- | firmware/target/coldfire/thread-coldfire.c | 2 | ||||
-rw-r--r-- | firmware/target/hosted/thread-arm.c | 1 | ||||
-rw-r--r-- | firmware/target/mips/thread-mips32.c | 2 | ||||
-rw-r--r-- | firmware/target/sh/thread-sh.c | 2 |
6 files changed, 0 insertions, 11 deletions
diff --git a/firmware/target/arm/thread-arm.c b/firmware/target/arm/thread-arm.c index 302b1592d8..e1bbc04248 100644 --- a/firmware/target/arm/thread-arm.c +++ b/firmware/target/arm/thread-arm.c @@ -21,8 +21,6 @@ * ****************************************************************************/ -#include "gcc_extensions.h" - /*--------------------------------------------------------------------------- * Start the thread running and terminate it if it returns *--------------------------------------------------------------------------- diff --git a/firmware/target/arm/thread-pp.c b/firmware/target/arm/thread-pp.c index 167bf03946..a0a4d4fd17 100644 --- a/firmware/target/arm/thread-pp.c +++ b/firmware/target/arm/thread-pp.c @@ -21,8 +21,6 @@ * ****************************************************************************/ -#include "gcc_extensions.h" - #if defined(MAX_PHYS_SECTOR_SIZE) && MEMORYSIZE == 64 /* Support a special workaround object for large-sector disks */ #define IF_NO_SKIP_YIELD(...) __VA_ARGS__ diff --git a/firmware/target/coldfire/thread-coldfire.c b/firmware/target/coldfire/thread-coldfire.c index d328e4af9a..e59a9390ba 100644 --- a/firmware/target/coldfire/thread-coldfire.c +++ b/firmware/target/coldfire/thread-coldfire.c @@ -21,8 +21,6 @@ * ****************************************************************************/ -#include "gcc_extensions.h" - /*--------------------------------------------------------------------------- * Start the thread running and terminate it if it returns *--------------------------------------------------------------------------- diff --git a/firmware/target/hosted/thread-arm.c b/firmware/target/hosted/thread-arm.c index f8e58c031c..8815f063d7 100644 --- a/firmware/target/hosted/thread-arm.c +++ b/firmware/target/hosted/thread-arm.c @@ -23,7 +23,6 @@ ****************************************************************************/ #include <system.h> -#include "gcc_extensions.h" /*--------------------------------------------------------------------------- * Start the thread running and terminate it if it returns diff --git a/firmware/target/mips/thread-mips32.c b/firmware/target/mips/thread-mips32.c index 2b34d3ce3d..ba90c8965b 100644 --- a/firmware/target/mips/thread-mips32.c +++ b/firmware/target/mips/thread-mips32.c @@ -21,8 +21,6 @@ * ****************************************************************************/ -#include "gcc_extensions.h" - /*--------------------------------------------------------------------------- * Start the thread running and terminate it if it returns *--------------------------------------------------------------------------- diff --git a/firmware/target/sh/thread-sh.c b/firmware/target/sh/thread-sh.c index 36c20686b0..0f844f204b 100644 --- a/firmware/target/sh/thread-sh.c +++ b/firmware/target/sh/thread-sh.c @@ -21,8 +21,6 @@ * ****************************************************************************/ -#include "gcc_extensions.h" - /*--------------------------------------------------------------------------- * Start the thread running and terminate it if it returns *--------------------------------------------------------------------------- |