diff options
Diffstat (limited to 'gdb/inferior.h')
-rw-r--r-- | gdb/inferior.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/gdb/inferior.h b/gdb/inferior.h index 7312e51..f1b5d17 100644 --- a/gdb/inferior.h +++ b/gdb/inferior.h @@ -425,6 +425,20 @@ struct inferior /* Private data used by the target vector implementation. */ struct private_inferior *private; + + /* We keep a count of the number of times the user has requested a + particular syscall to be tracked, and pass this information to the + target. This lets capable targets implement filtering directly. */ + + /* Number of times that "any" syscall is requested. */ + int any_syscall_count; + + /* Count of each system call. */ + VEC(int) *syscalls_counts; + + /* This counts all syscall catch requests, so we can readily determine + if any catching is necessary. */ + int total_syscalls_count; }; /* Create an empty inferior list, or empty the existing one. */ |