b496bd44ee383d8d5ed75e8278b94833db2cbc5e
[cacao.git] / src / native / jvmti / cacaodbgserver.h
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    $Id: cacao.c,v 3.165 2006/01/03 23:44:38 twisti Exp $
34
35 */
36
37 #ifndef _CACAODBGSERVER_H
38 #define _CACAODBGSERVER_H
39
40 #define INBUFLEN 8192
41
42 #define CONTINUE      "-exec-continue\n"
43
44 #define HCSIGTRAP "*stopped,reason=\"signal-received\",signal-name=\"SIGTRAP\"" 
45 #define GDBBREAKPOINT       "*stopped,reason=\"breakpoint-hit\""
46 #define EXITEDNORMALLY      "*stopped,reason=\"exited-normally\""
47 #define REGNAMES            "^done,register-names=["
48 #define CURRENTTHREAD       "~\"*"
49 #define SIGADDR             "frame={addr=\""
50 #define DATAEVALUATE        "value=\""
51 #define LOGSTREAMOUTPUT     '&'
52 #define CONSOLESTREAMOUTPUT '~'
53 #define OUTPUTEND           "(gdb)"
54 #define OUTPUTENDSIZE       5
55
56
57 #endif
58
59 /*
60  * These are local overrides for various environment variables in Emacs.
61  * Please do not remove this and leave it at the end of the file, where
62  * Emacs will automagically detect them.
63  * ---------------------------------------------------------------------
64  * Local variables:
65  * mode: c
66  * indent-tabs-mode: t
67  * c-basic-offset: 4
68  * tab-width: 4
69  * End:
70  */