aboutsummaryrefslogtreecommitdiffstats
path: root/common.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--common.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/common.h b/common.h
index 996b9ef..d3df014 100644
--- a/common.h
+++ b/common.h
@@ -67,8 +67,10 @@ enum type {
enum state {
Normal,
Syscall,
+ CloneChild,
ForkChild,
VforkChild,
+ CloneParent,
ForkParent,
VforkParent,
Exec
@@ -76,6 +78,7 @@ enum state {
struct process {
pid_t pid;
+ pid_t thread_group_leader;
struct process *next;
struct process *prev;
enum state state;