diff options
author | Christian Cunningham <cc@localhost> | 2022-03-18 16:02:08 -0700 |
---|---|---|
committer | Christian Cunningham <cc@localhost> | 2022-03-18 16:02:08 -0700 |
commit | 1fbbb6f15fef8e958b57728d59d1912aeea7c7c6 (patch) | |
tree | 9d009183e882f3a85393e2356bccaeb96ed6db92 /include | |
parent | 8b4a126ccca0694161bc3d0731f8b5c1ec66e5c8 (diff) |
Supervisor Call to Add Thread
Diffstat (limited to 'include')
-rw-r--r-- | include/cpu.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/cpu.h b/include/cpu.h index 393fe2f..202c6f5 100644 --- a/include/cpu.h +++ b/include/cpu.h @@ -91,7 +91,7 @@ static inline void* getirqstack(void) #define SYS_TIME 1 #define SYS_SCHED 2 #define SYS_YIELD_HIGH 2 -#define SYS_FREE_STACK 3 +#define SYS_ADD_THREAD 3 #define SYS_LOCK 4 #define SYS_UNLOCK 5 #define SYS_SEMAPHORE_P 6 |