From 7d3884b5cfc282dbdfe5d9a22d8b2b343280b8af Mon Sep 17 00:00:00 2001 From: Christian Cunningham Date: Tue, 1 Feb 2022 20:36:30 -0700 Subject: Thread yield control to any other threads --- include/sys/schedule.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include/sys/schedule.h') 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 -- cgit v1.2.1