mirror of
https://github.com/oliverschmidt/contiki.git
synced 2024-11-05 04:05:34 +00:00
13 lines
189 B
C
13 lines
189 B
C
|
/*
|
||
|
* Implementation of multithreading in ARM Cortex-M3. To be done.
|
||
|
*/
|
||
|
|
||
|
|
||
|
#ifndef __MTARCH_H__
|
||
|
#define __MTARCH_H__
|
||
|
|
||
|
struct mtarch_thread {
|
||
|
short mt_thread;
|
||
|
};
|
||
|
|
||
|
#endif /* __MTARCH_H__ */
|