summaryrefslogtreecommitdiffstats
path: root/testsuites/tmtests/tm22/task1.c
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2017-11-24 07:58:55 +0100
committerSebastian Huber <sebastian.huber@embedded-brains.de>2017-11-24 15:27:01 +0100
commite58e29fdb9dc1ba516691d9df373b2bdaa480f51 (patch)
treee29555317384bfbd963b301368def91559f1cd36 /testsuites/tmtests/tm22/task1.c
parentlibtests/malloctest: Fix 64-bit targets (diff)
downloadrtems-e58e29fdb9dc1ba516691d9df373b2bdaa480f51.tar.bz2
Remove coverhd.h
This header file contained timing overhead values which are hard to maintain. Update #3254.
Diffstat (limited to '')
-rw-r--r--testsuites/tmtests/tm22/task1.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/testsuites/tmtests/tm22/task1.c b/testsuites/tmtests/tm22/task1.c
index eb4548648d..2757af4b8c 100644
--- a/testsuites/tmtests/tm22/task1.c
+++ b/testsuites/tmtests/tm22/task1.c
@@ -104,7 +104,7 @@ rtems_task High_task(
end_time,
1,
0,
- CALLING_OVERHEAD_MESSAGE_QUEUE_BROADCAST
+ 0
);
status = rtems_task_suspend(RTEMS_SELF);
@@ -158,7 +158,7 @@ rtems_task Low_task(
end_time,
OPERATION_COUNT,
1,
- CALLING_OVERHEAD_MESSAGE_QUEUE_BROADCAST
+ 0
);
(void) rtems_message_queue_receive(
@@ -178,7 +178,7 @@ rtems_task Low_task(
end_time,
1,
0,
- CALLING_OVERHEAD_MESSAGE_QUEUE_BROADCAST
+ 0
);
TEST_END();