gdb: add overloads of gdb_tilde_expand

Like the previous commit, add two overloads of gdb_tilde_expand, one
takes std::string and other takes gdb::unique_xmalloc_ptr<char>.  Make
use of these overloads throughout GDB and gdbserver.

There should be no user visible changes after this commit.

Approved-By: Tom Tromey <tom@tromey.com>
This commit is contained in:
Andrew Burgess
2024-06-19 11:13:14 +01:00
parent 88aad97c21
commit 632c537277
4 changed files with 19 additions and 5 deletions

View File

@@ -20,7 +20,21 @@
#ifndef COMMON_GDB_TILDE_EXPAND_H
#define COMMON_GDB_TILDE_EXPAND_H
/* Perform tilde expansion on DIR, and return the full path. */
extern std::string gdb_tilde_expand (const char *dir);
/* Perform tilde expansion on PATH, and return the full path. */
extern std::string gdb_tilde_expand (const char *path);
/* Overload of gdb_tilde_expand that takes std::string. */
static inline std::string
gdb_tilde_expand (const std::string &path)
{
return gdb_tilde_expand (path.c_str ());
}
/* Overload of gdb_tilde_expand that takes gdb::unique_xmalloc_ptr<char>. */
static inline std::string
gdb_tilde_expand (const gdb::unique_xmalloc_ptr<char> &path)
{
return gdb_tilde_expand (path.get ());
}
#endif /* COMMON_GDB_TILDE_EXPAND_H */