Compare commits

..

No commits in common. "master" and "release" have entirely different histories.

2 changed files with 1 additions and 3 deletions

View file

@ -58,9 +58,7 @@ class Process(AbstractProcess):
def close(self): def close(self):
os.kill(self.pid, signal.SIGSTOP) os.kill(self.pid, signal.SIGSTOP)
os.waitpid(self.pid, 0)
ptrace(ptrace_commands['PTRACE_DETACH'], self.pid, 0, 0) ptrace(ptrace_commands['PTRACE_DETACH'], self.pid, 0, 0)
os.kill(self.pid, signal.SIGCONT)
self.pid = None self.pid = None
def write_memory(self, base_address: int, write_buffer: ctypes_buffer_t): def write_memory(self, base_address: int, write_buffer: ctypes_buffer_t):

View file

@ -15,7 +15,7 @@ setup(name='mem_edit',
long_description=long_description, long_description=long_description,
long_description_content_type='text/markdown', long_description_content_type='text/markdown',
author='Jan Petykiewicz', author='Jan Petykiewicz',
author_email='jan@mpxd.net', author_email='anewusername@gmail.com',
url='https://mpxd.net/code/jan/mem_edit', url='https://mpxd.net/code/jan/mem_edit',
keywords=[ keywords=[
'memory', 'memory',