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

@ -72,10 +72,10 @@ void _TaskAbort(void)
const int taskAbortCode = 1;
if (_ScbIsInThreadMode()) {
_task_ioctl(_k_current_task->Ident, taskAbortCode);
_task_ioctl(_k_current_task->id, taskAbortCode);
} else {
cmd_packet.Comm = _K_SVC_TASK_OP;
cmd_packet.Args.g1.task = _k_current_task->Ident;
cmd_packet.Args.g1.task = _k_current_task->id;
cmd_packet.Args.g1.opt = taskAbortCode;
cmd_packet.alloc = false;
_k_current_task->Args = &cmd_packet;