9 lines
114 B
C
9 lines
114 B
C
|
#define THD_WORKING_AREA(name, size) uint8_t name[size];
|
||
|
|
||
|
typedef int tprio_t;
|
||
|
|
||
|
class thread_t {
|
||
|
char *name;
|
||
|
|
||
|
};
|