replace ppid and pid fields with process in thread address

Co-authored-by: Willi Ballenthin <willi.ballenthin@gmail.com>
This commit is contained in:
Yacine Elhamer
2023-07-10 12:53:27 +01:00
committed by GitHub
parent 1ac64aca10
commit e5f5d542d0

View File

@@ -70,8 +70,7 @@ class ThreadAddress(Address):
def __init__(self, process: ProcessAddress, tid: int):
assert tid >= 0
self.ppid = process.ppid
self.pid = process.pid
self.process = process
self.tid = tid
def __repr__(self):