jvm 线程状态

NEW: Just starting up, i.e., in process of being initialized.
NEW_TRANS: Corresponding transition state (not used, included for completness).
IN_NATIVE: Running in native code.
IN_NATIVE_TRANS: Corresponding transition state.
IN_VM: Running in VM.
IN_VM_TRANS: Corresponding transition state.
IN_JAVA: Running in Java or in stub code.
IN_JAVA_TRANS: Corresponding transition state (not used, included for completness).
BLOCKED: Blocked in vm.
BLOCKED_TRANS: Corresponding transition state.

 

IN_NATIVE 指的是在执行native方法,netty会有大量该状态的线程

诺曼对 in_native的解释:https://github.com/netty/netty/issues/8000

posted @ 2019-05-15 20:58  每天进步一丶  阅读(2258)  评论(0编辑  收藏  举报