x86: define cpuflags_t only in the OS_EMBEDDED case.
[bertos.git] / 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