kernel: rename _k_thread_stack_element

Private data type, prefix with z_.

Signed-off-by: Andrew Boie <andrew.p.boie@intel.com>
This commit is contained in:
Andrew Boie 2020-03-11 06:56:58 -07:00 committed by Andrew Boie
commit 4bad34e749
12 changed files with 30 additions and 30 deletions

View file

@ -24,7 +24,7 @@ def subsystem_to_enum(subsys):
def kobject_to_enum(kobj):
if kobj.startswith("k_") or kobj.startswith("_k_"):
if kobj.startswith("k_") or kobj.startswith("z_"):
name = kobj[2:]
else:
name = kobj
@ -34,7 +34,7 @@ def kobject_to_enum(kobj):
DW_OP_addr = 0x3
DW_OP_fbreg = 0x91
STACK_TYPE = "_k_thread_stack_element"
STACK_TYPE = "z_thread_stack_element"
thread_counter = 0
sys_mutex_counter = 0
futex_counter = 0