X-Git-Url: http://git.efficios.com/?a=blobdiff_plain;f=gdb%2Fcontinuations.h;h=490bbec6fcc60bd4ef042e512726e9b1fb971bbf;hb=84e098cdea4eb6a5ddc525a2145ffe66475fa2af;hp=bf3b516af7a6c1a2d43ee080f4699f916d64524d;hpb=fa4cd53f7d2a4d6981bc4e09d5233f0df2c7f1cd;p=deliverable%2Fbinutils-gdb.git diff --git a/gdb/continuations.h b/gdb/continuations.h index bf3b516af7..490bbec6fc 100644 --- a/gdb/continuations.h +++ b/gdb/continuations.h @@ -1,7 +1,6 @@ /* Continuations for GDB, the GNU debugger. - Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2007, 2008, - 2009, 2010, 2011 Free Software Foundation, Inc. + Copyright (C) 1999-2019 Free Software Foundation, Inc. This file is part of GDB. @@ -21,7 +20,6 @@ #ifndef CONTINUATIONS_H #define CONTINUATIONS_H -struct thread_info; struct inferior; /* To continue the execution commands when running gdb asynchronously. @@ -46,24 +44,6 @@ typedef void (continuation_ftype) (void *arg, int err); continuation is called, or discarded. */ typedef void (continuation_free_arg_ftype) (void *); -/* Thread specific continuations. */ - -extern void add_continuation (struct thread_info *, - continuation_ftype *, void *, - continuation_free_arg_ftype *); -extern void do_all_continuations (int err); -extern void do_all_continuations_thread (struct thread_info *, int err); -extern void discard_all_continuations (void); -extern void discard_all_continuations_thread (struct thread_info *); - -extern void add_intermediate_continuation (struct thread_info *, - continuation_ftype *, void *, - continuation_free_arg_ftype *); -extern void do_all_intermediate_continuations (int err); -extern void do_all_intermediate_continuations_thread (struct thread_info *, int err); -extern void discard_all_intermediate_continuations (void); -extern void discard_all_intermediate_continuations_thread (struct thread_info *); - /* Inferior specific (any thread) continuations. */ extern void add_inferior_continuation (continuation_ftype *,