mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-17 07:53:51 +08:00
constify to_attach
This constifies the "args" argument to the target_ops to_attach method. I updated all instances of the method. I could not compile all of them but I hand-inspected them. In all cases either the argument is ignored, or it is passed to parse_pid_to_attach. (linux-nat does some extra stuff, but that one I built...) If you want to try it on your host of choice, please do so. The code in parse_pid_to_attach seems a little bogus to me. If there is a platform with a broken strtoul, we have better methods for fixing the issue now. However, I left the code as is since it is clearly ok to do so. Built and regtested on x86-64 Fedora 20. 2014-06-04 Tom Tromey <tromey@redhat.com> * procfs.c (procfs_attach): Make "args" const. * windows-nat.c (windows_attach): Make "args" const. * nto-procfs.c (procfs_attach): Make "args" const. * inf-ttrace.c (inf_ttrace_attach): Make "args" const. * go32-nat.c (go32_attach): Make "args" const. * gnu-nat.c (gnu_attach): Make "args" const. * darwin-nat.c (darwin_attach): Make "args" const. * inf-ptrace.c (inf_ptrace_attach): Make "args" const. * linux-nat.c (linux_nat_attach): Make "args" const. * remote.c (extended_remote_attach_1, extended_remote_attach): Make "args" const. * target.h (struct target_ops) <to_attach>: Make "args" const. (find_default_attach): Likewise. * utils.c (parse_pid_to_attach): Make "args" const. * utils.h (parse_pid_to_attach): Update.
This commit is contained in:
@ -409,7 +409,7 @@ struct target_ops
|
||||
for normal operations, and should be ready to deliver the
|
||||
status of the process immediately (without waiting) to an
|
||||
upcoming target_wait call. */
|
||||
void (*to_attach) (struct target_ops *ops, char *, int);
|
||||
void (*to_attach) (struct target_ops *ops, const char *, int);
|
||||
void (*to_post_attach) (struct target_ops *, int)
|
||||
TARGET_DEFAULT_IGNORE ();
|
||||
void (*to_detach) (struct target_ops *ops, const char *, int)
|
||||
@ -2140,7 +2140,7 @@ extern void noprocess (void) ATTRIBUTE_NORETURN;
|
||||
|
||||
extern void target_require_runnable (void);
|
||||
|
||||
extern void find_default_attach (struct target_ops *, char *, int);
|
||||
extern void find_default_attach (struct target_ops *, const char *, int);
|
||||
|
||||
extern void find_default_create_inferior (struct target_ops *,
|
||||
char *, char *, char **, int);
|
||||
|
Reference in New Issue
Block a user