You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
mem_edit/mem_edit
xerool 46e9456fd4 linux: wait for process before detach, and send SIGCONT
I had issues with the ptrace call failing because the process had not yet stopped
from SIGSTOP.
From this stackoverflow answer, it seems that you can use waitpid to
wait until the process is actually stopped. In python, this is exposed
as os.waitpid.

https://stackoverflow.com/questions/20510300/ptrace-detach-fails-after-ptrace-cont-with-errno-esrch#20525326

Additionally, the process was left frozen. I send a SIGCONT to continue
the process after the detach, so that it isn't left stopped.
2 years ago
..
VERSION.py bump version to v0.6 3 years ago
__init__.py move version info into VERSION.py 4 years ago
abstract.py try to reduce log spam 3 years ago
linux.py linux: wait for process before detach, and send SIGCONT 2 years ago
utils.py cosmetic and typing-related changes 4 years ago
windows.py try to reduce log spam 3 years ago