diff options
author | Tom Tromey <tromey@redhat.com> | 2013-12-17 21:33:06 -0700 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2014-02-19 07:45:48 -0700 |
commit | ff214e679c60368c23e4052c9efcc7457a3a2c43 (patch) | |
tree | a1913c392a51fa3b7d7d71b8be47044d28e5cdc0 /gdb | |
parent | 758e29d2cd0242b72a05515a701cfdcb73794864 (diff) | |
download | gdb-ff214e679c60368c23e4052c9efcc7457a3a2c43.zip gdb-ff214e679c60368c23e4052c9efcc7457a3a2c43.tar.gz gdb-ff214e679c60368c23e4052c9efcc7457a3a2c43.tar.bz2 |
Add target_ops argument to to_set_syscall_catchpoint
2014-02-19 Tom Tromey <tromey@redhat.com>
* target.h (struct target_ops) <to_set_syscall_catchpoint>: Add
argument.
(target_set_syscall_catchpoint): Add argument.
* linux-nat.c (linux_child_set_syscall_catchpoint): Add 'self'
argument.
* target.c (update_current_target): Update.
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/ChangeLog | 9 | ||||
-rw-r--r-- | gdb/linux-nat.c | 3 | ||||
-rw-r--r-- | gdb/target.c | 2 | ||||
-rw-r--r-- | gdb/target.h | 6 |
4 files changed, 16 insertions, 4 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index bcf582a..87f0bea 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,14 @@ 2014-02-19 Tom Tromey <tromey@redhat.com> + * target.h (struct target_ops) <to_set_syscall_catchpoint>: Add + argument. + (target_set_syscall_catchpoint): Add argument. + * linux-nat.c (linux_child_set_syscall_catchpoint): Add 'self' + argument. + * target.c (update_current_target): Update. + +2014-02-19 Tom Tromey <tromey@redhat.com> + * target.h (struct target_ops) <to_remove_exec_catchpoint>: Add argument. (target_remove_exec_catchpoint): Add argument. diff --git a/gdb/linux-nat.c b/gdb/linux-nat.c index c158f32..aaf55bf 100644 --- a/gdb/linux-nat.c +++ b/gdb/linux-nat.c @@ -732,7 +732,8 @@ linux_child_remove_exec_catchpoint (struct target_ops *self, int pid) } static int -linux_child_set_syscall_catchpoint (int pid, int needed, int any_count, +linux_child_set_syscall_catchpoint (struct target_ops *self, + int pid, int needed, int any_count, int table_size, int *table) { if (!linux_supports_tracesysgood ()) diff --git a/gdb/target.c b/gdb/target.c index 72ab8f3..74a2817 100644 --- a/gdb/target.c +++ b/gdb/target.c @@ -810,7 +810,7 @@ update_current_target (void) (int (*) (struct target_ops *, int)) return_one); de_fault (to_set_syscall_catchpoint, - (int (*) (int, int, int, int, int *)) + (int (*) (struct target_ops *, int, int, int, int, int *)) return_one); de_fault (to_has_exited, (int (*) (int, int, int *)) diff --git a/gdb/target.h b/gdb/target.h index e500e92..f40dcdd 100644 --- a/gdb/target.h +++ b/gdb/target.h @@ -505,7 +505,8 @@ struct target_ops int (*to_follow_fork) (struct target_ops *, int, int); int (*to_insert_exec_catchpoint) (struct target_ops *, int); int (*to_remove_exec_catchpoint) (struct target_ops *, int); - int (*to_set_syscall_catchpoint) (int, int, int, int, int *); + int (*to_set_syscall_catchpoint) (struct target_ops *, + int, int, int, int, int *); int (*to_has_exited) (int, int, int *); void (*to_mourn_inferior) (struct target_ops *); int (*to_can_run) (void); @@ -1359,7 +1360,8 @@ int target_follow_fork (int follow_child, int detach_fork); for failure. */ #define target_set_syscall_catchpoint(pid, needed, any_count, table_size, table) \ - (*current_target.to_set_syscall_catchpoint) (pid, needed, any_count, \ + (*current_target.to_set_syscall_catchpoint) (¤t_target, \ + pid, needed, any_count, \ table_size, table) /* Returns TRUE if PID has exited. And, also sets EXIT_STATUS to the |