diff options
author | Christian Cunningham <cc@localhost> | 2022-03-18 12:57:53 -0700 |
---|---|---|
committer | Christian Cunningham <cc@localhost> | 2022-03-18 12:57:53 -0700 |
commit | 94f2b0b8f48f5715975446c637a078008fb7e941 (patch) | |
tree | 2fb1744748e3bd4c93b2dae65a6033763c17e737 /src/tests | |
parent | 7ea4a4e970ae4a72ac7b58e98d232662d580ed47 (diff) |
Generalized Queue
Diffstat (limited to 'src/tests')
-rw-r--r-- | src/tests/test.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tests/test.c b/src/tests/test.c index 0c3ffb0..1bc6c9a 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); } |