_THREAD_QUEUED overlaps with x86 _EXC_ACTIVE in k_thread.thread_state #17361
Labels
area: X86
x86 Architecture (32-bit)
bug
The issue is a bug, or the PR is fixing a bug
priority: low
Low impact/importance bug
kernel/include/kernel_structs.h
(line 53) says:#define _THREAD_QUEUED (BIT(6))
and
arch/x86/include/ia32/kernel_arch_data.h
(line 60) says:#define _EXC_ACTIVE (1 << 6)
These are both bit definitions for
k_thread.thread_state
. I think this is ... bad. Am I crazy?The text was updated successfully, but these errors were encountered: