Hacker News new | ask | show | jobs
by convolvatron 759 days ago
reentrancy is not sufficient here - at least that provided by mutex style exclusion. the interrupted thread may have actually been the one holding the lock, so if the signal handler enters a queue to wait for it, it may be waiting quite a while
1 comments

That's why the word reentrant is used, not thread safe.