Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion kernel/include/kthread.h
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@
}


static inline bool z_is_idle_thread_entry(void *entry_point)
static inline bool z_is_idle_thread_entry(k_thread_entry_t entry_point)

Check notice on line 228 in kernel/include/kthread.h

View workflow job for this annotation

GitHub Actions / Run compliance checks on patch series (PR)

You may want to run clang-format on this change

kernel/include/kthread.h:228 -

Check notice on line 228 in kernel/include/kthread.h

View workflow job for this annotation

GitHub Actions / Run compliance checks on patch series (PR)

You may want to run clang-format on this change

kernel/include/kthread.h:228 -
{
return entry_point == idle;
}
Expand Down
Loading