]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/async-event.h
Update copyright year range in header of all files managed by GDB
[thirdparty/binutils-gdb.git] / gdb / async-event.h
CommitLineData
93b54c8e 1/* Async events for the GDB event loop.
1d506c26 2 Copyright (C) 1999-2024 Free Software Foundation, Inc.
93b54c8e
TT
3
4 This file is part of GDB.
5
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 3 of the License, or
9 (at your option) any later version.
10
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with this program. If not, see <http://www.gnu.org/licenses/>. */
18
19#ifndef ASYNC_EVENT_H
20#define ASYNC_EVENT_H
21
400b5eca 22#include "gdbsupport/event-loop.h"
93b54c8e
TT
23
24struct async_signal_handler;
25struct async_event_handler;
26typedef void (sig_handler_func) (gdb_client_data);
6b36ddeb
SM
27
28/* Type of async event handler callbacks.
29
30 DATA is the client data originally passed to create_async_event_handler.
31
32 The callback is called when the async event handler is marked. The callback
33 is responsible for clearing the async event handler if it no longer needs
34 to be called. */
35
93b54c8e
TT
36typedef void (async_event_handler_func) (gdb_client_data);
37
38extern struct async_signal_handler *
db20ebdf
SM
39 create_async_signal_handler (sig_handler_func *proc,
40 gdb_client_data client_data,
41 const char *name);
93b54c8e
TT
42extern void delete_async_signal_handler (struct async_signal_handler **);
43
44/* Call the handler from HANDLER the next time through the event
45 loop. */
46extern void mark_async_signal_handler (struct async_signal_handler *handler);
47
48/* Returns true if HANDLER is marked ready. */
49
50extern int
51 async_signal_handler_is_marked (struct async_signal_handler *handler);
52
53/* Mark HANDLER as NOT ready. */
54
55extern void clear_async_signal_handler (struct async_signal_handler *handler);
56
57/* Create and register an asynchronous event source in the event loop,
58 and set PROC as its callback. CLIENT_DATA is passed as argument to
59 PROC upon its invocation. Returns a pointer to an opaque structure
60 used to mark as ready and to later delete this event source from
db20ebdf
SM
61 the event loop.
62
63 NAME is a user-friendly name for the handler, used in debug statements. The
64 name is not copied: its lifetime should be at least as long as that of the
65 handler. */
66
93b54c8e
TT
67extern struct async_event_handler *
68 create_async_event_handler (async_event_handler_func *proc,
db20ebdf
SM
69 gdb_client_data client_data,
70 const char *name);
93b54c8e
TT
71
72/* Remove the event source pointed by HANDLER_PTR created by
73 CREATE_ASYNC_EVENT_HANDLER from the event loop, and release it. */
74extern void
75 delete_async_event_handler (struct async_event_handler **handler_ptr);
76
77/* Call the handler from HANDLER the next time through the event
78 loop. */
79extern void mark_async_event_handler (struct async_event_handler *handler);
80
b4b1a226
SM
81/* Return true if HANDLER is marked. */
82extern bool async_event_handler_marked (async_event_handler *handler);
83
93b54c8e
TT
84/* Mark the handler (ASYNC_HANDLER_PTR) as NOT ready. */
85
86extern void clear_async_event_handler (struct async_event_handler *handler);
87
88extern void initialize_async_signal_handlers (void);
89
90#endif /* ASYNC_EVENT_H */