Support $pdir and $sdir in libthread-db-search-path.
[deliverable/binutils-gdb.git] / gdb / doc / observer.texi
CommitLineData
bcd7e15f 1@c -*-texinfo-*-
16d1a084
DJ
2
3@c This file is part of the GDB manual.
4@c
44944448
JB
5@c Copyright (C) 2003, 2004, 2005, 2006, 2008, 2009, 2010, 2011
6@c Free Software Foundation, Inc.
16d1a084
DJ
7@c
8@c See the file gdbint.texinfo for copying conditions.
9@c
10@c Also, the @deftypefun lines from this file are processed into a
11@c header file during the GDB build process. Permission is granted
12@c to redistribute and/or modify those lines under the terms of the
13@c GNU General Public License as published by the Free Software
a1715244 14@c Foundation; either version 3 of the License, or (at your option)
16d1a084
DJ
15@c any later version.
16
bcd7e15f
JB
17@node GDB Observers
18@appendix @value{GDBN} Currently available observers
19
20@section Implementation rationale
21@cindex observers implementation rationale
22
23An @dfn{observer} is an entity which is interested in being notified
24when GDB reaches certain states, or certain events occur in GDB.
25The entity being observed is called the @dfn{subject}. To receive
26notifications, the observer attaches a callback to the subject.
27One subject can have several observers.
28
29@file{observer.c} implements an internal generic low-level event
6be67e67 30notification mechanism. This generic event notification mechanism is
bcd7e15f
JB
31then re-used to implement the exported high-level notification
32management routines for all possible notifications.
33
34The current implementation of the generic observer provides support
35for contextual data. This contextual data is given to the subject
36when attaching the callback. In return, the subject will provide
37this contextual data back to the observer as a parameter of the
38callback.
39
40Note that the current support for the contextual data is only partial,
41as it lacks a mechanism that would deallocate this data when the
42callback is detached. This is not a problem so far, as this contextual
43data is only used internally to hold a function pointer. Later on, if
44a certain observer needs to provide support for user-level contextual
6be67e67 45data, then the generic notification mechanism will need to be
bcd7e15f
JB
46enhanced to allow the observer to provide a routine to deallocate the
47data when attaching the callback.
48
49The observer implementation is also currently not reentrant.
50In particular, it is therefore not possible to call the attach
51or detach routines during a notification.
52
2b4855ab
AC
53@section Debugging
54Observer notifications can be traced using the command @samp{set debug
55observer 1} (@pxref{Debugging Output, , Optional messages about
56internal happenings, gdb, Debugging with @var{GDBN}}).
57
bcd7e15f
JB
58@section @code{normal_stop} Notifications
59@cindex @code{normal_stop} observer
60@cindex notification about inferior execution stop
61
6be67e67
JB
62@value{GDBN} notifies all @code{normal_stop} observers when the
63inferior execution has just stopped, the associated messages and
64annotations have been printed, and the control is about to be returned
16d1a084 65to the user.
6be67e67
JB
66
67Note that the @code{normal_stop} notification is not emitted when
68the execution stops due to a breakpoint, and this breakpoint has
69a condition that is not met. If the breakpoint has any associated
70commands list, the commands are executed after the notification
71is emitted.
bcd7e15f 72
7a464420 73The following interfaces are available to manage observers:
bcd7e15f 74
7a464420
AC
75@deftypefun extern struct observer *observer_attach_@var{event} (observer_@var{event}_ftype *@var{f})
76Using the function @var{f}, create an observer that is notified when
d3e8051b 77ever @var{event} occurs, return the observer.
bcd7e15f
JB
78@end deftypefun
79
7a464420 80@deftypefun extern void observer_detach_@var{event} (struct observer *@var{observer});
bcd7e15f 81Remove @var{observer} from the list of observers to be notified when
7a464420 82@var{event} occurs.
bcd7e15f
JB
83@end deftypefun
84
7a464420
AC
85@deftypefun extern void observer_notify_@var{event} (void);
86Send a notification to all @var{event} observers.
bcd7e15f
JB
87@end deftypefun
88
7a464420 89The following observable events are defined:
bcd7e15f 90
1d33d6ba
VP
91@deftypefun void normal_stop (struct bpstats *@var{bs}, int @var{print_frame})
92The inferior has stopped for real. The @var{bs} argument describes
93the breakpoints were are stopped at, if any. Second argument
94@var{print_frame} non-zero means display the location where the
95inferior has stopped.
7a464420 96@end deftypefun
79346bcb
OF
97
98@deftypefun void target_changed (struct target_ops *@var{target})
67ab9a76 99The target's register contents have changed.
79346bcb 100@end deftypefun
59caf092 101
781b42b0 102@deftypefun void executable_changed (void)
ea53e89f
JB
103The executable being debugged by GDB has changed: The user decided
104to debug a different program, or the program he was debugging has
105been modified since being loaded by the debugger (by being recompiled,
106for instance).
107@end deftypefun
108
59caf092
AC
109@deftypefun void inferior_created (struct target_ops *@var{objfile}, int @var{from_tty})
110@value{GDBN} has just connected to an inferior. For @samp{run},
111@value{GDBN} calls this observer while the inferior is still stopped
112at the entry-point instruction. For @samp{attach} and @samp{core},
113@value{GDBN} calls this observer immediately after connecting to the
114inferior, and before any information on the inferior has been printed.
115@end deftypefun
f3bb6704 116
fbd1b305
MK
117@deftypefun void solib_loaded (struct so_list *@var{solib})
118The shared library specified by @var{solib} has been loaded. Note that
119when @value{GDBN} calls this observer, the library's symbols probably
120haven't been loaded yet.
f3bb6704
JJ
121@end deftypefun
122
fbd1b305
MK
123@deftypefun void solib_unloaded (struct so_list *@var{solib})
124The shared library specified by @var{solib} has been unloaded.
30a4a70c
JB
125Note that when @value{GDBN} calls this observer, the library's
126symbols have not been unloaded yet, and thus are still available.
fbd1b305 127@end deftypefun
06d3b283
UW
128
129@deftypefun void new_objfile (struct objfile *@var{objfile})
130The symbol file specified by @var{objfile} has been loaded.
131Called with @var{objfile} equal to @code{NULL} to indicate
132previously loaded symbol table data has now been invalidated.
133@end deftypefun
134
683f2885
VP
135@deftypefun void new_thread (struct thread_info *@var{t})
136The thread specified by @var{t} has been created.
137@end deftypefun
138
a07daef3
PA
139@deftypefun void thread_exit (struct thread_info *@var{t}, int @var{silent})
140The thread specified by @var{t} has exited. The @var{silent} argument
141indicates that @value{GDBN} is removing the thread from its tables
142without wanting to notify the user about it.
063bfe2e
VP
143@end deftypefun
144
252fbfc8
PA
145@deftypefun void thread_stop_requested (ptid_t @var{ptid})
146An explicit stop request was issued to @var{ptid}. If @var{ptid}
147equals @var{minus_one_ptid}, the request applied to all threads. If
148@code{ptid_is_pid(ptid)} returns true, the request applied to all
149threads of the process pointed at by @var{ptid}. Otherwise, the
150request applied to the single thread pointed at by @var{ptid}.
151@end deftypefun
152
e1ac3328
VP
153@deftypefun void target_resumed (ptid_t @var{ptid})
154The target was resumed. The @var{ptid} parameter specifies which
155thread was resume, and may be RESUME_ALL if all threads are resumed.
156@end deftypefun
383f836e 157
f3b1572e
PA
158@deftypefun void about_to_proceed (void)
159The target is about to be proceeded.
160@end deftypefun
161
8d3788bd
VP
162@deftypefun void breakpoint_created (struct breakpoint *@var{b})
163A new breakpoint @var{b} has been created.
383f836e
TT
164@end deftypefun
165
8d3788bd
VP
166@deftypefun void breakpoint_deleted (struct breakpoint *@var{b})
167A breakpoint has been destroyed. The argument @var{b} is the
168pointer to the destroyed breakpoint.
383f836e
TT
169@end deftypefun
170
8d3788bd
VP
171@deftypefun void breakpoint_modified (struct breakpoint *@var{b})
172A breakpoint has been modified in some way. The argument @var{b}
173is the modified breakpoint.
383f836e
TT
174@end deftypefun
175
176@deftypefun void tracepoint_created (int @var{tpnum})
177A new tracepoint has been created. The argument @var{tpnum} is the
178number of the newly-created tracepoint.
179@end deftypefun
180
181@deftypefun void tracepoint_deleted (int @var{tpnum})
182A tracepoint has been destroyed. The argument @var{tpnum} is the
183number of the newly-destroyed tracepoint.
184@end deftypefun
185
186@deftypefun void tracepoint_modified (int @var{tpnum})
187A tracepoint has been modified in some way. The argument @var{tpnum}
188is the number of the modified tracepoint.
189@end deftypefun
190
191@deftypefun void architecture_changed (struct gdbarch *@var{newarch})
192The current architecture has changed. The argument @var{newarch} is
193a pointer to the new architecture.
194@end deftypefun
195
5231c1fd
PA
196@deftypefun void thread_ptid_changed (ptid_t @var{old_ptid}, ptid_t @var{new_ptid})
197The thread's ptid has changed. The @var{old_ptid} parameter specifies
198the old value, and @var{new_ptid} specifies the new value.
199@end deftypefun
4a92f99b 200
a79b8f6e
VP
201@deftypefun void inferior_added (struct inferior *@var{inf})
202The inferior @var{inf} has been added to the list of inferiors. At
203this point, it might not be associated with any process.
4a92f99b
VP
204@end deftypefun
205
a79b8f6e
VP
206@deftypefun void inferior_appeared (struct inferior *@var{inf})
207The inferior identified by @var{inf} has been attached to a process.
208@end deftypefun
209
210@deftypefun void inferior_exit (struct inferior *@var{inf})
211Either the inferior associated with @var{inf} has been detached from the
212process, or the process has exited.
213@end deftypefun
214
215@deftypefun void inferior_removed (struct inferior *@var{inf})
216The inferior @var{inf} has been removed from the list of inferiors.
217This method is called immediately before freeing @var{inf}.
8cebebb9
PP
218@end deftypefun
219
220@deftypefun void memory_changed (CORE_ADDR @var{addr}, int @var{len}, const bfd_byte *@var{data})
221Bytes from @var{data} to @var{data} + @var{len} have been written
222to the current inferior at @var{addr}.
4a92f99b
VP
223@end deftypefun
224
a79b8f6e 225@deftypefun void test_notification (int @var{somearg})
3ea85240
VP
226This observer is used for internal testing. Do not use.
227See testsuite/gdb.gdb/observer.exp.
a79b8f6e 228@end deftypefun
3ea85240 229
This page took 0.525271 seconds and 4 git commands to generate.