aboutsummaryrefslogtreecommitdiffstats
path: root/test/rt
diff options
context:
space:
mode:
Diffstat (limited to 'test/rt')
-rw-r--r--test/rt/testbmk.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/test/rt/testbmk.c b/test/rt/testbmk.c
index 1bffbc4df..3cc713089 100644
--- a/test/rt/testbmk.c
+++ b/test/rt/testbmk.c
@@ -312,7 +312,11 @@ static void bmk6_execute(void) {
test_wait_tick();
test_start_timer(1000);
do {
+#if CH_CFG_USE_REGISTRY
+ chThdRelease(chThdCreateStatic(wap, WA_SIZE, prio, thread1, NULL));
+#else
chThdCreateStatic(wap, WA_SIZE, prio, thread1, NULL);
+#endif
n++;
#if defined(SIMULATOR)
_sim_check_for_interrupts();