diff --git a/core/sys/mt.c b/core/sys/mt.c index cfa8a39a5..430440fe8 100644 --- a/core/sys/mt.c +++ b/core/sys/mt.c @@ -46,10 +46,6 @@ #include "sys/mt.h" #include "sys/cc.h" -#define MT_STATE_READY 1 -#define MT_STATE_RUNNING 2 -#define MT_STATE_EXITED 5 - static struct mt_thread *current; /*--------------------------------------------------------------------------*/ diff --git a/core/sys/mt.h b/core/sys/mt.h index 0e67dee0d..f6296e24a 100644 --- a/core/sys/mt.h +++ b/core/sys/mt.h @@ -84,6 +84,9 @@ #include "contiki.h" +#define MT_STATE_READY 1 +#define MT_STATE_RUNNING 2 +#define MT_STATE_EXITED 5 /** * An opaque structure that is used for holding the state of a thread.