CACAO
cacaodbgserver.h
Go to the documentation of this file.
1 /* src/native/jvmti/cacaodbgserver.h - contains cacao specifics for
2  debugging support
3 
4  Copyright (C) 1996-2005, 2006 R. Grafl, A. Krall, C. Kruegel,
5  C. Oates, R. Obermaisser, M. Platter, M. Probst, S. Ring,
6  E. Steiner, C. Thalinger, D. Thuernbeck, P. Tomsich, C. Ullrich,
7  J. Wenninger, Institut f. Computersprachen - TU Wien
8 
9  This file is part of CACAO.
10 
11  This program is free software; you can redistribute it and/or
12  modify it under the terms of the GNU General Public License as
13  published by the Free Software Foundation; either version 2, or (at
14  your option) any later version.
15 
16  This program is distributed in the hope that it will be useful, but
17  WITHOUT ANY WARRANTY; without even the implied warranty of
18  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19  General Public License for more details.
20 
21  You should have received a copy of the GNU General Public License
22  along with this program; if not, write to the Free Software
23  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
24  02111-1307, USA.
25 
26  Contact: cacao@complang.tuwien.ac.at
27 
28  Authors: Martin Platter
29 
30  Changes:
31 
32 
33 
34 */
35 
36 #ifndef _CACAODBGSERVER_H
37 #define _CACAODBGSERVER_H
38 
39 #define INBUFLEN 8192
40 
41 #define CONTINUE "-exec-continue\n"
42 
43 #define HCSIGTRAP "*stopped,reason=\"signal-received\",signal-name=\"SIGTRAP\""
44 #define GDBBREAKPOINT "*stopped,reason=\"breakpoint-hit\""
45 #define EXITEDNORMALLY "*stopped,reason=\"exited-normally\""
46 #define REGNAMES "^done,register-names=["
47 #define CURRENTTHREAD "~\"*"
48 #define SIGADDR "frame={addr=\""
49 #define DATAEVALUATE "value=\""
50 #define LOGSTREAMOUTPUT '&'
51 #define CONSOLESTREAMOUTPUT '~'
52 #define OUTPUTEND "(gdb)"
53 #define OUTPUTENDSIZE 5
54 
55 
56 #endif
57 
58 /*
59  * These are local overrides for various environment variables in Emacs.
60  * Please do not remove this and leave it at the end of the file, where
61  * Emacs will automagically detect them.
62  * ---------------------------------------------------------------------
63  * Local variables:
64  * mode: c
65  * indent-tabs-mode: t
66  * c-basic-offset: 4
67  * tab-width: 4
68  * End:
69  */