Moved thread states from module to header

This commit is contained in:
marcas756 2014-11-22 15:49:45 +01:00
parent a8556a7518
commit b787b27d5b
2 changed files with 3 additions and 4 deletions

View file

@ -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;
/*--------------------------------------------------------------------------*/

View file

@ -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.