Reformat.
authorasterix <asterix@38d2e660-2303-0410-9eaa-f027e97ec537>
Mon, 9 Feb 2009 11:35:46 +0000 (11:35 +0000)
committerasterix <asterix@38d2e660-2303-0410-9eaa-f027e97ec537>
Mon, 9 Feb 2009 11:35:46 +0000 (11:35 +0000)
git-svn-id: https://src.develer.com/svnoss/bertos/trunk@2327 38d2e660-2303-0410-9eaa-f027e97ec537

bertos/kern/monitor.c
bertos/kern/sem.c

index 26e2025b514dab010ec961ae298d0567a3892f5e..5995fc53d223954ee4905afb38183457c18f5917 100644 (file)
 #if CONFIG_KERN_MONITOR
 
 #include "proc_p.h"
+#include <cfg/macros.h>
+#include <cfg/debug.h>
+
 #include <struct/list.h>
+
 #include <drv/timer.h>
+
 #include <kern/proc.h>
-#include <cpu/frame.h> /* CPU_STACK_GROWS_UPWARD */
-#include <cfg/macros.h>
-#include <cfg/debug.h>
 
+#include <cpu/frame.h> /* CPU_STACK_GROWS_UPWARD */
 
 /* Access to this list must be protected against the scheduler */
 static List MonitorProcs;
 
-
 void monitor_init(void)
 {
        LIST_INIT(&MonitorProcs);
index 7d07f4d6f61585b928e1361186857c0071cca5fd..ac4e7d969bb4afa5bd505a182a16a59b9a31372f 100644 (file)
  */
 
 #include "sem.h"
+#include <cfg/debug.h>
+
 #include <cpu/irq.h> // ASSERT_IRQ_DISABLED()
+
 #include <kern/proc.h>
 #include <kern/proc_p.h>
 #include <kern/signal.h>
-#include <cfg/debug.h>
 
 INLINE void sem_verify(struct Semaphore *s)
 {
@@ -52,7 +54,6 @@ INLINE void sem_verify(struct Semaphore *s)
        ASSERT(s->nest_count < 128);   // heuristic max
 }
 
-
 /**
  * \brief Initialize a Semaphore structure.
  */