diff options
author | Simon Marchi <simon.marchi@ericsson.com> | 2017-09-03 10:23:31 +0200 |
---|---|---|
committer | Simon Marchi <simon.marchi@ericsson.com> | 2017-09-03 10:23:31 +0200 |
commit | 23fdd69e42180578b3e15ba8f053fadde965bfe8 (patch) | |
tree | 5f8dc1441127578fe91dde474ec94ccde1413e94 /gdb/target.h | |
parent | f04bdfa7b261402bfa9dbdde58b2feb14becd8a3 (diff) | |
download | gdb-23fdd69e42180578b3e15ba8f053fadde965bfe8.zip gdb-23fdd69e42180578b3e15ba8f053fadde965bfe8.tar.gz gdb-23fdd69e42180578b3e15ba8f053fadde965bfe8.tar.bz2 |
Make target_waitstatus_to_string return an std::string
A quite straightforward change. It does "fix" leaks in record-btrace.c,
although since this is only used in debug printing code, it has no real
world impact.
gdb/ChangeLog:
* target/waitstatus.h (target_waitstatus_to_string): Change
return type to std::string.
* target/waitstatus.c (target_waitstatus_to_string): Return
std::string.
* target.h (target_waitstatus_to_string): Remove declaration.
* infrun.c (resume, clear_proceed_status_thread,
print_target_wait_results, do_target_wait, save_waitstatus,
stop_all_threads): Adjust.
* record-btrace.c (record_btrace_wait): Adjust.
* target-debug.h
(target_debug_print_struct_target_waitstatus_p): Adjust.
gdb/gdbserver/ChangeLog:
* linux-low.c (linux_wait_1): Adjust.
* server.c (queue_stop_reply_callback): Adjust.
Diffstat (limited to 'gdb/target.h')
-rw-r--r-- | gdb/target.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/gdb/target.h b/gdb/target.h index c0155c1..5971151 100644 --- a/gdb/target.h +++ b/gdb/target.h @@ -108,10 +108,6 @@ struct syscall const char *name; }; -/* Return a pretty printed form of target_waitstatus. - Space for the result is malloc'd, caller must free. */ -extern char *target_waitstatus_to_string (const struct target_waitstatus *); - /* Return a pretty printed form of TARGET_OPTIONS. Space for the result is malloc'd, caller must free. */ extern char *target_options_to_string (int target_options); |