Acquire lock in separate thread - #802
Conversation
f591678 to
3f1139e
Compare
3f1139e to
e55e340
Compare
|
Okay, this ended up being trickier than I thought, because not only do you need a locker thread responsible for locking the target process, but you also need to keep the So my original solution in which the locker thread finishes execution immediately, it would just instantly unpause the target thread before samples could be taken. Happily this is something we're testing for with Please let me know if you have any comments or if you feel this could be handled more gracefully, I'd be grateful for any feedback. |
a7c93d8 to
92fd140
Compare
|
Ack, I pushed the last commit after testing (and passing locally on linux), and then was away for the past couple of weeks. I see now the Windows tests are failing, but I don't know why. I'll try spinning up a VM to test this out, but any help here would be appreciated. Moving back into draft until this gets resolved. |
|
I pushed an empty commit to re-trigger CI, but workflow needs approval again; as far as I can tell the failing test now pass on my fork I think (https://github.com/Carreau/py-spy/actions/runs/21870162508/job/63122773473) |
|
☝️ Thanks for double checking about this. Let me mark this as ready for review. |
|
Hey all, it would be great to see this merged at some point - would it be possible to retrigger CI? |
|
Hello @peytondmurray ! When can we expect this feature to be merged and released? :) |
|
Hey @pezosanta, thanks for the tag: looks like I need to resolve these conflicts. I'll take care of that today, but I don't have the power to approve workflows or merge these changes. |
|
Hi all, In resolving the conflicts with the current Previously with the locking mechanism that I implemented above, the separate locker thread would only block the main thread when the main thread requested the target process to be locked, but not when it was released. When the Now I've implemented an additional check: the main thread will now block until it receives an acknowledgement that the locker thread has released the lock on the target python thread. That seems to have resolved the issue, and I've documented how it works in a diagram in I'd appreciate a second look if anyone has time. And please let me know if there's anything I can do to get this across the finish line! |
This PR modifies the way that the process to be inspected gets locked.
Before,
py-spywould first check the process for active threads before locking the process (otherwise all threads are reported as being idle). If the process exited before a lock could be acquired,py-spywould hang while waiting for the status of the PID to change.With this PR, acquiring the lock on the process happens in a separate thread; if the thread doesn't acquire a lock in a specified time (default is 1s, but this is a config variable. If this is too short we can increase it) we simply error out instead of hanging. Closes #732.
I've also fixed an issue with installing the
numpy>=2optional test requirement in the test workflow.