1 | /*
|
---|
2 | * Copyright (c) 1998, 2005, Oracle and/or its affiliates. All rights reserved.
|
---|
3 | * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
---|
4 | *
|
---|
5 | * This code is free software; you can redistribute it and/or modify it
|
---|
6 | * under the terms of the GNU General Public License version 2 only, as
|
---|
7 | * published by the Free Software Foundation. Oracle designates this
|
---|
8 | * particular file as subject to the "Classpath" exception as provided
|
---|
9 | * by Oracle in the LICENSE file that accompanied this code.
|
---|
10 | *
|
---|
11 | * This code is distributed in the hope that it will be useful, but WITHOUT
|
---|
12 | * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
---|
13 | * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
---|
14 | * version 2 for more details (a copy is included in the LICENSE file that
|
---|
15 | * accompanied this code).
|
---|
16 | *
|
---|
17 | * You should have received a copy of the GNU General Public License version
|
---|
18 | * 2 along with this work; if not, write to the Free Software Foundation,
|
---|
19 | * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
---|
20 | *
|
---|
21 | * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
---|
22 | * or visit www.oracle.com if you need additional information or have any
|
---|
23 | * questions.
|
---|
24 | */
|
---|
25 |
|
---|
26 | #ifndef JDWP_JDWP_H
|
---|
27 | #define JDWP_JDWP_H
|
---|
28 |
|
---|
29 | #include "JDWPCommands.h"
|
---|
30 |
|
---|
31 | /*
|
---|
32 | * JDWPCommands.h is the javah'ed version of all the constants defined
|
---|
33 | * com.sun.tools.jdi.JDWP and all its nested classes. Since the names are
|
---|
34 | * very long, the macros below are provided for convenience.
|
---|
35 | */
|
---|
36 |
|
---|
37 | #define JDWP_COMMAND_SET(name) JDWP_ ## name
|
---|
38 | #define JDWP_COMMAND(set, name) JDWP_ ## set ## _ ## name
|
---|
39 | #define JDWP_REQUEST_MODIFIER(name) \
|
---|
40 | JDWP_EventRequest_Set_Out_modifiers_Modifier_ ## name
|
---|
41 | #define JDWP_EVENT(name) \
|
---|
42 | JDWP_EventKind_ ## name
|
---|
43 | #define JDWP_THREAD_STATUS(name) \
|
---|
44 | JDWP_ThreadStatus_ ## name
|
---|
45 | #define JDWP_SUSPEND_STATUS(name) \
|
---|
46 | JDWP_SuspendStatus_SUSPEND_STATUS_ ## name
|
---|
47 | #define JDWP_CLASS_STATUS(name) \
|
---|
48 | JDWP_ClassStatus_ ## name
|
---|
49 | #define JDWP_TYPE_TAG(name) \
|
---|
50 | JDWP_TypeTag_ ## name
|
---|
51 | #define JDWP_TAG(name) \
|
---|
52 | JDWP_Tag_ ## name
|
---|
53 | #define JDWP_STEP_DEPTH(name) \
|
---|
54 | JDWP_StepDepth_ ## name
|
---|
55 | #define JDWP_STEP_SIZE(name) \
|
---|
56 | JDWP_StepSize_ ## name
|
---|
57 | #define JDWP_SUSPEND_POLICY(name) \
|
---|
58 | JDWP_SuspendPolicy_ ## name
|
---|
59 | #define JDWP_INVOKE_OPTIONS(name) \
|
---|
60 | JDWP_InvokeOptions_INVOKE_ ## name
|
---|
61 | #define JDWP_ERROR(name) \
|
---|
62 | JDWP_Error_ ## name
|
---|
63 | #define JDWP_HIGHEST_COMMAND_SET 17
|
---|
64 | #define JDWP_REQUEST_NONE -1
|
---|
65 |
|
---|
66 | /* This typedef helps keep the event and error types straight. */
|
---|
67 | typedef unsigned short jdwpError;
|
---|
68 | typedef unsigned char jdwpEvent;
|
---|
69 | typedef jint jdwpThreadStatus;
|
---|
70 |
|
---|
71 | #endif
|
---|