You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If one of the threads we've suspended disappears while we're writing the minidump the call to ptrace::detach() in PtraceDumper::resume_thread() will fail setting errno to ESRCH. This is a completely benign error which we can ignore since we simply don't care about the state of the process/thread after we're done with it. The same applies to pretty much any other use of pthread::detach(), we could ignore this error for all of them.
The text was updated successfully, but these errors were encountered:
afranchuk
added a commit
to afranchuk/minidump-writer
that referenced
this issue
Jan 5, 2023
If one of the threads we've suspended disappears while we're writing the minidump the call to
ptrace::detach()
inPtraceDumper::resume_thread()
will fail settingerrno
toESRCH
. This is a completely benign error which we can ignore since we simply don't care about the state of the process/thread after we're done with it. The same applies to pretty much any other use ofpthread::detach()
, we could ignore this error for all of them.The text was updated successfully, but these errors were encountered: