summaryrefslogtreecommitdiff
path: root/core/host/task.c
diff options
context:
space:
mode:
Diffstat (limited to 'core/host/task.c')
-rw-r--r--core/host/task.c19
1 files changed, 10 insertions, 9 deletions
diff --git a/core/host/task.c b/core/host/task.c
index 31ea386f2e..fa853dce60 100644
--- a/core/host/task.c
+++ b/core/host/task.c
@@ -5,15 +5,6 @@
/* Task scheduling / events module for Chrome EC operating system */
-#include <malloc.h>
-#include <pthread.h>
-#include <semaphore.h>
-#include <signal.h>
-#include <stdint.h>
-#include <stdio.h>
-#include <stdlib.h>
-#include <string.h>
-
#include "atomic.h"
#include "common.h"
#include "console.h"
@@ -23,6 +14,16 @@
#include "test_util.h"
#include "timer.h"
+#include <signal.h>
+#include <stdint.h>
+#include <stdio.h>
+#include <stdlib.h>
+#include <string.h>
+
+#include <malloc.h>
+#include <pthread.h>
+#include <semaphore.h>
+
#define SIGNAL_INTERRUPT SIGUSR1
struct emu_task_t {