Skip to content

Commit 96ccb91

Browse files
dcpleungnashif
authored andcommitted
tests: kernel/smp: fixed missing 'z_' renaming
There was a missing 'z_' renaming to z_is_thread_prevented_from_running which would have caused sanitycheck to fail but it is not being built at the moment. Fix this first. Signed-off-by: Daniel Leung <[email protected]>
1 parent 87b7bee commit 96ccb91

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/kernel/smp/src/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -372,7 +372,7 @@ static void wakeup_on_start_thread(int tnum)
372372
for (i = 0; i < tnum; i++) {
373373
while (thread_started[i] == 0) {
374374
}
375-
while (!_is_thread_prevented_from_running(tinfo[i].tid)) {
375+
while (!z_is_thread_prevented_from_running(tinfo[i].tid)) {
376376
}
377377
}
378378

0 commit comments

Comments
 (0)