Remove OBJ_NODE() macro

Not only is the OBJ_NODE() macro unused, its name suggests
multi-node functionality.

Change-Id: I5967c03a0e526f63261d9b7e0e03b9f3bf01a1cd
Signed-off-by: Peter Mitsis <peter.mitsis@windriver.com>
Signed-off-by: Benjamin Walsh <benjamin.walsh@windriver.com>
This commit is contained in:
Peter Mitsis 2015-04-22 15:14:11 -04:00 committed by Anas Nashif
commit 1b04b4d30c

View file

@ -39,13 +39,6 @@
extern "C" {
#endif
/*
* Macros for extracting the fields of a microkernel object id
*
* Note that OBJ_NODE() returns its info in the high 16 bits!
*/
#define OBJ_NODE(objId) ((knode_t)(objId & 0xFFFF0000))
#define OBJ_INDEX(objId) ((uint16_t)objId)
typedef int32_t ktask_t;