zhoukangsheng commented on issue #3028: URL: https://github.com/apache/brpc/issues/3028#issuecomment-3274498692
This is not a bug and it is a very classic deadlock problem caused by fork.The lock you added in the parent process is copied to the child process, but there is no corresponding thread in the child process to unlock it, so it is stuck there. Try forking and then exec! -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
