aboutsummaryrefslogtreecommitdiffstats
path: root/exec/exec.h
diff options
context:
space:
mode:
Diffstat (limited to 'exec/exec.h')
-rw-r--r--exec/exec.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/exec/exec.h b/exec/exec.h
index 625ad0bb219..8ee74d7ca8b 100644
--- a/exec/exec.h
+++ b/exec/exec.h
@@ -153,7 +153,11 @@ struct exec_tracee
153 153
154 /* Whether or not the tracee is currently waiting for a system call 154 /* Whether or not the tracee is currently waiting for a system call
155 to complete. */ 155 to complete. */
156 bool waiting_for_syscall; 156 bool waiting_for_syscall : 1;
157
158 /* Whether or not the tracee has been created but is not yet
159 processed by `handle_clone'. */
160 bool new_child : 1;
157 161
158#ifndef REENTRANT 162#ifndef REENTRANT
159 /* Name of the executable being run. */ 163 /* Name of the executable being run. */