migrated tcb.h include to .c file

This commit is contained in:
Martin 2014-02-18 12:50:30 +01:00
parent 88c7c47c46
commit ff36df6847
2 changed files with 1 additions and 1 deletions

View File

@ -23,7 +23,6 @@
#define _MUTEX_H #define _MUTEX_H
#include "queue.h" #include "queue.h"
#include "tcb.h"
/** /**
* @brief Mutex structure. Should never be modified by the user. * @brief Mutex structure. Should never be modified by the user.

View File

@ -22,6 +22,7 @@
#include <inttypes.h> #include <inttypes.h>
#include "mutex.h" #include "mutex.h"
#include "tcb.h"
#include "atomic.h" #include "atomic.h"
#include "kernel.h" #include "kernel.h"
#include "sched.h" #include "sched.h"