removeNode() is declared as:
static void
removeNode(ThreadList *list, ThreadNode *node)
However, there is no need for the list argument because it is also stored in node->list.
static void
removeNode(ThreadList *list, ThreadNode *node)
However, there is no need for the list argument because it is also stored in node->list.
- relates to
-
JDK-8295810 cleanup debug agent removeThread() api
-
- Resolved
-