diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2010-03-05 19:01:12 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2010-03-05 19:01:12 +0000 |
commit | b69948bc4883423fde36e63e2ef5d2d16f7ec71c (patch) | |
tree | 576847f058c97f57c87882a8989deeb610cefe2d /test/testbmk.c | |
parent | 549fe1b7d3a791c2aa112a53bb2c49c2f48fa24e (diff) | |
download | ChibiOS-b69948bc4883423fde36e63e2ef5d2d16f7ec71c.tar.gz ChibiOS-b69948bc4883423fde36e63e2ef5d2d16f7ec71c.tar.bz2 ChibiOS-b69948bc4883423fde36e63e2ef5d2d16f7ec71c.zip |
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@1713 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'test/testbmk.c')
-rw-r--r-- | test/testbmk.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/test/testbmk.c b/test/testbmk.c index d25d51d8b..e07b7018b 100644 --- a/test/testbmk.c +++ b/test/testbmk.c @@ -110,7 +110,6 @@ static void bmk1_execute(void) { threads[0] = chThdCreateStatic(wa[0], WA_SIZE, chThdGetPriority()-1, thread1, NULL);
n = msg_loop_test(threads[0]);
- chThdTerminate(threads[0]);
test_wait_threads();
test_print("--- Score : ");
test_printn(n);
@@ -145,7 +144,6 @@ static void bmk2_execute(void) { threads[0] = chThdCreateStatic(wa[0], WA_SIZE, chThdGetPriority()+1, thread1, NULL);
n = msg_loop_test(threads[0]);
- chThdTerminate(threads[0]);
test_wait_threads();
test_print("--- Score : ");
test_printn(n);
@@ -190,7 +188,6 @@ static void bmk3_execute(void) { threads[3] = chThdCreateStatic(wa[3], WA_SIZE, chThdGetPriority()-4, thread2, NULL);
threads[4] = chThdCreateStatic(wa[4], WA_SIZE, chThdGetPriority()-5, thread2, NULL);
n = msg_loop_test(threads[0]);
- chThdTerminate(threads[0]);
test_wait_threads();
test_print("--- Score : ");
test_printn(n);
|