summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/i386/ts_386ex/tools/debug_ada/serial_debug.ads
blob: d645ca52c5e1c06b894e9f62ae3d09b20596f6b2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
--  This package allows one to easily add serial debugging support to any
--  Ada program by simply adding "with Serial_Debug; use Serial_Debug".
--  Debugging will be automatically initialized when the program is run,
--  and it should be possible to interrupt the running program from ddd/gdb.
--
--  Additionally, one can place explicit breakpoints for the debugger using
--  the procedure Breakpoint

package Serial_Debug is

   procedure Breakpoint;

private

   pragma Inline (Breakpoint);

end Serial_Debug;