https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=212562
Jilles Tjoelker <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |[email protected] Status|New |Open --- Comment #5 from Jilles Tjoelker <[email protected]> --- I can reproduce this bug on head r305285M, also in bhyve. Attaching gdb shows the parent to be stuck in the waitpid() on line 215 and the child in the select() on line 172. The bug seems to be in the test. Sometimes the child takes very long to reach the select() call and the signal has already happened before that, and the child blocks indefinitely. A possible fix would be to block SIGINT instead of installing an empty handler and using sigwait() to wait for the signal. -- You are receiving this mail because: You are the assignee for the bug. _______________________________________________ [email protected] mailing list https://lists.freebsd.org/mailman/listinfo/freebsd-bugs To unsubscribe, send any mail to "[email protected]"
