Rename microkernel struct field 'Ident' to 'id'.
Rename field 'Ident' of the struct: - 'k_proc' in the file include/microkernel/base_api.h Change-Id: Iec787e0a8aa1791c968b371017cf96211a60cef1 Signed-off-by: Yonattan Louise <yonattan.a.louise.mendoza@intel.com>
This commit is contained in:
parent
de4d3b51fc
commit
617501354c
7 changed files with 15 additions and 15 deletions
|
@ -54,7 +54,7 @@ extern struct k_task _k_task_list_end[];
|
|||
|
||||
ktask_t task_id_get(void)
|
||||
{
|
||||
return _k_current_task->Ident;
|
||||
return _k_current_task->id;
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -279,7 +279,7 @@ static void abort_task(struct k_task *X)
|
|||
|
||||
FUNC_NORETURN void _TaskAbort(void)
|
||||
{
|
||||
_task_ioctl(_k_current_task->Ident, TASK_ABORT);
|
||||
_task_ioctl(_k_current_task->id, TASK_ABORT);
|
||||
|
||||
/*
|
||||
* Compiler can't tell that _task_ioctl() won't return and issues
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue