aboutsummaryrefslogtreecommitdiff
path: root/include/sys
diff options
context:
space:
mode:
authorChristian Cunningham <cc@localhost>2022-02-01 20:36:30 -0700
committerChristian Cunningham <cc@localhost>2022-02-01 20:36:30 -0700
commit7d3884b5cfc282dbdfe5d9a22d8b2b343280b8af (patch)
treea3e5e5376c35cce48d1e2d907720646448c5e2ba /include/sys
parent98793badc1c1d3e4bfd735fdecd3d2d731701ab3 (diff)
Thread yield control to any other threads
Diffstat (limited to 'include/sys')
-rw-r--r--include/sys/schedule.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/sys/schedule.h b/include/sys/schedule.h
index 4d331a6..cb784c5 100644
--- a/include/sys/schedule.h
+++ b/include/sys/schedule.h
@@ -64,6 +64,6 @@ struct Thread* next_thread(void);
/// to user mode then calls the SVC call
extern void schedule(void);
extern void cleanup(void);
-// void yield(void);
+void yield(void);
#endif