convert to_remove_exec_catchpoint

2014-02-19  Tom Tromey  <tromey@redhat.com>

	* target-delegates.c: Rebuild.
	* target.c (update_current_target): Don't inherit or default
	to_insert_exec_catchpoint.
	* target.h (struct target_ops) <to_insert_exec_catchpoint>: Use
	TARGET_DEFAULT_RETURN.
This commit is contained in:
Tom Tromey
2013-12-18 10:46:02 -07:00
parent 62f64d7a6a
commit cda0f38c9e
4 changed files with 27 additions and 5 deletions

View File

@ -530,7 +530,8 @@ struct target_ops
int (*to_follow_fork) (struct target_ops *, int, int);
int (*to_insert_exec_catchpoint) (struct target_ops *, int)
TARGET_DEFAULT_RETURN (1);
int (*to_remove_exec_catchpoint) (struct target_ops *, int);
int (*to_remove_exec_catchpoint) (struct target_ops *, int)
TARGET_DEFAULT_RETURN (1);
int (*to_set_syscall_catchpoint) (struct target_ops *,
int, int, int, int, int *);
int (*to_has_exited) (struct target_ops *, int, int, int *);