x86: define cpuflags_t only in the OS_EMBEDDED case.
authorbernie <bernie@38d2e660-2303-0410-9eaa-f027e97ec537>
Sun, 10 Aug 2008 13:41:00 +0000 (13:41 +0000)
committerbernie <bernie@38d2e660-2303-0410-9eaa-f027e97ec537>
Sun, 10 Aug 2008 13:41:00 +0000 (13:41 +0000)
git-svn-id: https://src.develer.com/svnoss/bertos/trunk@1600 38d2e660-2303-0410-9eaa-f027e97ec537

bertos/cpu/types.h

index 1b2b23f4c7538fb4ddafd7ec25277a81fc6ec35b..8cbba3d862d41828d56bcdcb6f8138634b83b20d 100644 (file)
@@ -54,7 +54,7 @@
 
 #elif CPU_X86
 
-       /* Get IRQ_* definitions from the hosting environment. */
+       /* Get cpuflags_t definition from the hosting environment. */
        #include <cfg/os.h>
        #if OS_EMBEDDED
                typedef uint32_t cpuflags_t; // FIXME
 
 #elif CPU_PPC
 
-       typedef uint32_t cpuflags_t; // FIXME
+       /* Get cpuflags_t definition from the hosting environment. */
+       #include <cfg/os.h>
+       #if OS_EMBEDDED
+               typedef uint32_t cpuflags_t; // FIXME
+       #endif
+
        typedef uint32_t cpustack_t; // FIXME
        #define SIZEOF_CPUSTACK_T 4