mirror of
https://github.com/drasko/codezero.git
synced 2026-01-12 19:03:15 +01:00
10 lines
168 B
C
10 lines
168 B
C
#ifndef __THREAD_H__
|
|
#define __THREAD_H__
|
|
|
|
#define THREAD_CREATE 0
|
|
#define THREAD_RUN 1
|
|
#define THREAD_SUSPEND 2
|
|
#define THREAD_RESUME 3
|
|
|
|
#endif /* __THREAD_H__ */
|