mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2025-01-12 12:16:04 +08:00
fe7b42e584
This removes the basic cleanup code: make_cleanups, do_cleanups, discard_cleanups, and friends. This code is no longer needed, as nothing in gdb makes an ordinary cleanup. Final cleanups are still needed. 2019-03-06 Tom Tromey <tom@tromey.com> * top.c (quit_force): Update. * main.c (captured_command_loop): Update. * common/new-op.c (operator new): Update. * common/common-exceptions.c (struct catcher) <save_cleanup_chain>: Remove member. (exceptions_state_mc_init): Update. (exception_try_scope_entry): Return nullptr. (exception_try_scope_exit, exception_rethrow) (throw_exception_sjlj, throw_exception_cxx): Update. * common/cleanups.h (make_cleanup, make_cleanup_dtor) (all_cleanups, do_cleanups, discard_cleanups) (discard_final_cleanups, save_cleanups, save_final_cleanups) (restore_cleanups, restore_final_cleanups): Don't declare. (do_final_cleanups): Remove parameter. * common/cleanups.c (cleanup_chain, make_cleanup) (make_cleanup_dtor, all_cleanups, do_cleanups) (discard_my_cleanups, discard_cleanups) (discard_final_cleanups, save_my_cleanups, save_cleanups) (save_final_cleanups, restore_my_cleanups, restore_cleanups) (null_cleanup): Remove. (do_final_cleanups): Remove parameter.
40 lines
1.5 KiB
C
40 lines
1.5 KiB
C
/* Cleanups.
|
|
Copyright (C) 1986-2019 Free Software Foundation, Inc.
|
|
|
|
This file is part of GDB.
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation; either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>. */
|
|
|
|
#ifndef COMMON_CLEANUPS_H
|
|
#define COMMON_CLEANUPS_H
|
|
|
|
/* Outside of cleanups.c, this is an opaque type. */
|
|
struct cleanup;
|
|
|
|
/* NOTE: cagney/2000-03-04: This typedef is strictly for the
|
|
make_cleanup function declarations below. Do not use this typedef
|
|
as a cast when passing functions into the make_cleanup() code.
|
|
Instead either use a bounce function or add a wrapper function.
|
|
Calling a f(char*) function with f(void*) is non-portable. */
|
|
typedef void (make_cleanup_ftype) (void *);
|
|
|
|
/* Function type for the dtor in make_cleanup_dtor. */
|
|
typedef void (make_cleanup_dtor_ftype) (void *);
|
|
|
|
extern struct cleanup *make_final_cleanup (make_cleanup_ftype *, void *);
|
|
|
|
extern void do_final_cleanups ();
|
|
|
|
#endif /* COMMON_CLEANUPS_H */
|