aboutsummaryrefslogtreecommitdiff
path: root/gdb/utils.c
diff options
context:
space:
mode:
authorTom Tromey <tom@tromey.com>2017-07-23 15:52:59 -0600
committerTom Tromey <tom@tromey.com>2017-08-03 07:59:10 -0600
commit744e4fe1db7099d91f71c50c83708cfef5d3d0c8 (patch)
tree7b19e781f9472950569658fe7024fa799c83e611 /gdb/utils.c
parent1c034b67a03ed928eb3916034eb1e782a8188520 (diff)
downloadgdb-744e4fe1db7099d91f71c50c83708cfef5d3d0c8.zip
gdb-744e4fe1db7099d91f71c50c83708cfef5d3d0c8.tar.gz
gdb-744e4fe1db7099d91f71c50c83708cfef5d3d0c8.tar.bz2
Remove make_cleanup_freeargv and gdb_buildargv
After the previous patches in this series, make_cleanup_freeargv and gdb_buildargv are now unused and can be removed. ChangeLog 2017-08-03 Tom Tromey <tom@tromey.com> * utils.c (make_cleanup_freeargv, do_freeargv, gdb_buildargv): Remove. * utils.h (make_cleanup_freeargv, gdb_buildargv): Remove.
Diffstat (limited to 'gdb/utils.c')
-rw-r--r--gdb/utils.c27
1 files changed, 0 insertions, 27 deletions
diff --git a/gdb/utils.c b/gdb/utils.c
index e7e176d..96ae709 100644
--- a/gdb/utils.c
+++ b/gdb/utils.c
@@ -136,18 +136,6 @@ show_pagination_enabled (struct ui_file *file, int from_tty,
because while they use the "cleanup API" they are not part of the
"cleanup API". */
-static void
-do_freeargv (void *arg)
-{
- freeargv ((char **) arg);
-}
-
-struct cleanup *
-make_cleanup_freeargv (char **arg)
-{
- return make_cleanup (do_freeargv, arg);
-}
-
/* Helper function for make_cleanup_ui_out_redirect_pop. */
static void
@@ -2877,21 +2865,6 @@ gdb_argv::reset (const char *s)
m_argv = argv;
}
-/* Call libiberty's buildargv, and return the result.
- If buildargv fails due to out-of-memory, call nomem.
- Therefore, the returned value is guaranteed to be non-NULL,
- unless the parameter itself is NULL. */
-
-char **
-gdb_buildargv (const char *s)
-{
- char **argv = buildargv (s);
-
- if (s != NULL && argv == NULL)
- malloc_failure (0);
- return argv;
-}
-
int
compare_positive_ints (const void *ap, const void *bp)
{