What is the java signal dispatcher thread?

后端 未结 2 1485
萌比男神i
萌比男神i 2021-01-02 03:57

I was looking through a thread dump of a java process, and notice some threads blocked by signal dispatcher.

What is signal dispatcher? What does it do?

2条回答
  •  暖寄归人
    2021-01-02 04:39

    I found an article about this on IBM developerWorks. When the OS raises a signal to the JVM, the signal dispatcher thread will pass the signal to the appropriate handler

    Revelations on Java signal handling and termination by Chris White, Software Engineer, IBM

提交回复
热议问题