preempt: Move idle process to its own source file
[bertos.git] / bertos / emul / emul.cpp
index 29ab59db00bb5769ae5e13654ebd127ce43bba7d..e26c680e7a0ecfb05f58c13094b86b09db40a2c7 100644 (file)
  * the GNU General Public License.
  *
  * Copyright 2006 Develer S.r.l. (http://www.develer.com/)
- * Copyright 2000, 2001 Bernardo Innocenti <bernie@codewiz.org>
- *
+ * Copyright 2000, 2001, 2008 Bernie Innocenti <bernie@codewiz.org>
  * -->
  *
- * \version $Id$
- *
- * \author Bernardo Innocenti <bernie@develer.com>
- *
  * \brief Qt-based emulator framework for embedded applications (implementation)
+ *
+ * \version $Id$
+ * \author Bernie Innocenti <bernie@codewiz.org>
  */
 
 #include "emul.h"
 
 #include <cfg/module.h>
 
-
-
-#include <cstdlib> // std::exit()
-
 #include <QtGui/qapplication.h>
+#include <cstdlib> // std::exit()
 
 
 /// The global emulator instance.
 Emulator *emul;
 
 #if CONFIG_KERNEL
-       #include <mware/list.h>
+       #include <struct/list.h>
 
        /// List of process stacks
        List StackFreeList;