* ld-powerpc/tlsexe.r: Update for changed sym type.
[deliverable/binutils-gdb.git] / gdb / doc / observer.texi
CommitLineData
bcd7e15f
JB
1@c -*-texinfo-*-
2@node GDB Observers
3@appendix @value{GDBN} Currently available observers
4
5@section Implementation rationale
6@cindex observers implementation rationale
7
8An @dfn{observer} is an entity which is interested in being notified
9when GDB reaches certain states, or certain events occur in GDB.
10The entity being observed is called the @dfn{subject}. To receive
11notifications, the observer attaches a callback to the subject.
12One subject can have several observers.
13
14@file{observer.c} implements an internal generic low-level event
6be67e67 15notification mechanism. This generic event notification mechanism is
bcd7e15f
JB
16then re-used to implement the exported high-level notification
17management routines for all possible notifications.
18
19The current implementation of the generic observer provides support
20for contextual data. This contextual data is given to the subject
21when attaching the callback. In return, the subject will provide
22this contextual data back to the observer as a parameter of the
23callback.
24
25Note that the current support for the contextual data is only partial,
26as it lacks a mechanism that would deallocate this data when the
27callback is detached. This is not a problem so far, as this contextual
28data is only used internally to hold a function pointer. Later on, if
29a certain observer needs to provide support for user-level contextual
6be67e67 30data, then the generic notification mechanism will need to be
bcd7e15f
JB
31enhanced to allow the observer to provide a routine to deallocate the
32data when attaching the callback.
33
34The observer implementation is also currently not reentrant.
35In particular, it is therefore not possible to call the attach
36or detach routines during a notification.
37
38@section @code{normal_stop} Notifications
39@cindex @code{normal_stop} observer
40@cindex notification about inferior execution stop
41
6be67e67
JB
42@value{GDBN} notifies all @code{normal_stop} observers when the
43inferior execution has just stopped, the associated messages and
44annotations have been printed, and the control is about to be returned
45to the user.
46
47Note that the @code{normal_stop} notification is not emitted when
48the execution stops due to a breakpoint, and this breakpoint has
49a condition that is not met. If the breakpoint has any associated
50commands list, the commands are executed after the notification
51is emitted.
bcd7e15f
JB
52
53The following interface is available to manage @code{normal_stop}
54observers:
55
56@deftypefun extern struct observer *observer_attach_normal_stop (observer_normal_stop_ftype *@var{f})
57Attach the given @code{normal_stop} callback function @var{f} and
58return the associated observer.
59@end deftypefun
60
61@deftypefun extern void observer_detach_normal_stop (struct observer *@var{observer});
62Remove @var{observer} from the list of observers to be notified when
63a @code{normal_stop} event occurs.
64@end deftypefun
65
66@deftypefun extern void observer_notify_normal_stop (void);
67Send a notification to all @code{normal_stop} observers.
68@end deftypefun
69
70
This page took 0.107424 seconds and 4 git commands to generate.