aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Cunningham <cc@localhost>2022-04-06 20:21:22 -0700
committerChristian Cunningham <cc@localhost>2022-04-06 20:21:22 -0700
commitfb660d94d589a223c3af52240db7ca20d2aec7e1 (patch)
tree4eae95c9514cc3cff53c0cbf91ba51e40053984d
parentf8c8cf119c7113aebcf57749f4495577281d08e3 (diff)
Fixed remake of test suite
-rw-r--r--usr/test.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/usr/test.c b/usr/test.c
index 7129937..d9c9179 100644
--- a/usr/test.c
+++ b/usr/test.c
@@ -23,7 +23,7 @@ static unsigned long idx = 0;
void test_results(unsigned long off)
{
- unsigned long mean=0, stdev=0, max=0;
+ unsigned long long mean=0, stdev=0, max=0;
for (unsigned long i = 0; i < MAX_ITER; i++) {
mean += times[i];
if (times[i] > max)
@@ -171,7 +171,7 @@ void test_super(void)
for (unsigned long i = 0; i < MAX_ITER; i++) {
m = create_mutex(0);
lock_mutex(m);
- add_thread(mutex_lock_test, 0, 2);
+ add_thread(mutex_lock_test, m, 2);
unlock_mutex(m);
delete_mutex(m);
}
@@ -179,14 +179,14 @@ void test_super(void)
add_thread(test_results,(void*) 6, 0);idx = 0;
for (unsigned long i = 0; i < MAX_ITER; i++) {
m = create_mutex(0);
- add_thread(mutex_lock_test, 0, 2);
+ add_thread(mutex_lock_test, m, 2);
delete_mutex(m);
}
draw_string(7*15, 11, "Mutex Lock");
add_thread(test_results,(void*) 7, 0);idx = 0;
for (unsigned long i = 0; i < MAX_ITER; i++) {
m = create_mutex(0);
- add_thread(mutex_unlock_test, 0, 2);
+ add_thread(mutex_unlock_test, m, 2);
delete_mutex(m);
}
draw_string(8*15, 11, "Mutex Unlock");