kernel: add condition variables

Introduce condition variables similar to how they are done in POSIX with
a mutex.

Signed-off-by: Anas Nashif <anas.nashif@intel.com>
This commit is contained in:
Anas Nashif 2020-08-23 12:39:09 -04:00
commit 06eb489c45
4 changed files with 151 additions and 0 deletions

View file

@ -24,6 +24,7 @@ list(APPEND kernel_files
thread_abort.c
version.c
work_q.c
condvar.c
smp.c
banner.c
)