From 74f95c5696335b02d768815fea2940bf089d057f Mon Sep 17 00:00:00 2001 From: Christian Cunningham Date: Fri, 18 Mar 2022 13:21:06 -0700 Subject: Fixed Mutex Locking bug --- src/tests/test.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/tests') diff --git a/src/tests/test.c b/src/tests/test.c index 1bc6c9a..0c3ffb0 100644 --- a/src/tests/test.c +++ b/src/tests/test.c @@ -148,6 +148,6 @@ void btest(void) { x = 0; add_thread(ctest1, 0, 3); - //add_thread(stest1, 0, 6); - //add_thread(stest2, 0, 7); + add_thread(stest1, 0, 6); + add_thread(stest2, 0, 7); } -- cgit v1.2.1