aboutsummaryrefslogtreecommitdiff
path: root/gdb/utils.c
diff options
context:
space:
mode:
authorAndrew Cagney <cagney@redhat.com>2000-05-23 14:48:13 +0000
committerAndrew Cagney <cagney@redhat.com>2000-05-23 14:48:13 +0000
commitf5ff8c83c82bcf6d152bf5390a6ca8716dab1de3 (patch)
tree125615c64e173d4680bd334d376661a38c1850f8 /gdb/utils.c
parentba09750c1eb83bff64c9ee1b0254de68da3ca1f2 (diff)
downloadgdb-f5ff8c83c82bcf6d152bf5390a6ca8716dab1de3.zip
gdb-f5ff8c83c82bcf6d152bf5390a6ca8716dab1de3.tar.gz
gdb-f5ff8c83c82bcf6d152bf5390a6ca8716dab1de3.tar.bz2
Add make_cleanup_close() function.
Diffstat (limited to 'gdb/utils.c')
-rw-r--r--gdb/utils.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/gdb/utils.c b/gdb/utils.c
index 8e2c5c5..6f5264a 100644
--- a/gdb/utils.c
+++ b/gdb/utils.c
@@ -216,6 +216,19 @@ make_cleanup_bfd_close (bfd *abfd)
}
static void
+do_close_cleanup (void *arg)
+{
+ close ((int) arg);
+}
+
+struct cleanup *
+make_cleanup_close (int fd)
+{
+ /* int into void*. Outch!! */
+ return make_cleanup (do_close_cleanup, (void *) fd);
+}
+
+static void
do_ui_file_delete (void *arg)
{
ui_file_delete (arg);