aboutsummaryrefslogtreecommitdiff
path: root/src/tests
diff options
context:
space:
mode:
authorChristian Cunningham <cc@localhost>2022-03-18 13:21:06 -0700
committerChristian Cunningham <cc@localhost>2022-03-18 13:21:06 -0700
commit74f95c5696335b02d768815fea2940bf089d057f (patch)
tree67910ed837cab2ccd59507b94b0dc204d3279fa4 /src/tests
parent94f2b0b8f48f5715975446c637a078008fb7e941 (diff)
Fixed Mutex Locking bug
Diffstat (limited to 'src/tests')
-rw-r--r--src/tests/test.c4
1 files changed, 2 insertions, 2 deletions
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);
}