Removal of task_node_id_get

With the recent cleanup, the code no longer has the concept of a node, and
therefore no longer needs the following function.

Change-Id: Ib40886c0fc07a465327c95a13106d90f2aef5f0a
Signed-off-by: Dan Kalowsky <daniel.kalowsky@intel.com>
This commit is contained in:
Dan Kalowsky 2015-04-30 14:43:32 -07:00 committed by Anas Nashif
commit 934eca208b

View file

@ -84,7 +84,6 @@ extern void KS_TaskSetSwitchCallBack(taskswitchcallbackfunc func);
#define task_group_mask_get() (_k_current_task->Group)
#define task_group_join(g) (_k_current_task->Group |= g)
#define task_group_leave(g) (_k_current_task->Group &= ~g)
#define task_node_id_get() (_k_this_node)
#define isr_task_id_get() task_id_get()
#define isr_task_priority_get() task_priority_get()