Contiki 2.5
mtarch.h
1 /*
2  * Implementation of multithreading in ARM Cortex-M3. To be done.
3  */
4 
5 
6 #ifndef __MTARCH_H__
7 #define __MTARCH_H__
8 
9 struct mtarch_thread {
10  short mt_thread;
11 };
12 
13 #endif /* __MTARCH_H__ */