aboutsummaryrefslogtreecommitdiff
path: root/gdb/debuginfod-support.c
diff options
context:
space:
mode:
authorTom Tromey <tromey@adacore.com>2024-02-23 13:10:28 -0700
committerTom Tromey <tromey@adacore.com>2024-02-27 10:30:29 -0700
commit1eae7be116ddabb13b34d2c2e8e0dc13fbae2a0d (patch)
treedc0770a269e741138de98fda6ea6cb4c8c179ce1 /gdb/debuginfod-support.c
parentcfe51255b892962c25166cc0afd8911caf9e1e56 (diff)
downloadbinutils-1eae7be116ddabb13b34d2c2e8e0dc13fbae2a0d.zip
binutils-1eae7be116ddabb13b34d2c2e8e0dc13fbae2a0d.tar.gz
binutils-1eae7be116ddabb13b34d2c2e8e0dc13fbae2a0d.tar.bz2
Rewrite final cleanups
This patch rewrites final cleanups to use std::function and otherwise be more C++-ish.
Diffstat (limited to 'gdb/debuginfod-support.c')
-rw-r--r--gdb/debuginfod-support.c14
1 files changed, 4 insertions, 10 deletions
diff --git a/gdb/debuginfod-support.c b/gdb/debuginfod-support.c
index 7d8ada3..9bb3748 100644
--- a/gdb/debuginfod-support.c
+++ b/gdb/debuginfod-support.c
@@ -188,15 +188,6 @@ progressfn (debuginfod_client *c, long cur, long total)
return 0;
}
-/* Cleanup ARG, which is a debuginfod_client pointer. */
-
-static void
-cleanup_debuginfod_client (void *arg)
-{
- debuginfod_client *client = static_cast<debuginfod_client *> (arg);
- debuginfod_end (client);
-}
-
/* Return a pointer to the single global debuginfod_client, initialising it
first if needed. */
@@ -221,7 +212,10 @@ get_debuginfod_client ()
handlers, which is too late.
So instead, we make use of GDB's final cleanup mechanism. */
- make_final_cleanup (cleanup_debuginfod_client, global_client);
+ add_final_cleanup ([] ()
+ {
+ debuginfod_end (global_client);
+ });
debuginfod_set_progressfn (global_client, progressfn);
}
}