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:
Yonattan Louise 2015-08-24 09:42:35 -05:00 committed by Anas Nashif
commit 617501354c
7 changed files with 15 additions and 15 deletions

View file

@ -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