Dead
[official-gcc.git] / gomp-20050608-branch / libjava / classpath / native / vmi / vmi.h
blob1a8e26a817465819cf6d75b747016bf7526fb85b
1 /* Japhar implementation of VMI.
2 Copyright (C) 1998 Free Software Foundation, Inc.
4 This file is part of GNU Classpath.
6 GNU Classpath is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
9 any later version.
11 GNU Classpath is distributed in the hope that it will be useful, but
12 WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with GNU Classpath; see the file COPYING. If not, write to the
18 Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
19 02110-1301 USA.
21 Linking this library statically or dynamically with other modules is
22 making a combined work based on this library. Thus, the terms and
23 conditions of the GNU General Public License cover the whole
24 combination.
26 As a special exception, the copyright holders of this library give you
27 permission to link this library with independent modules to produce an
28 executable, regardless of the license terms of these independent
29 modules, and to copy and distribute the resulting executable under
30 terms of your choice, provided that you also meet, for each linked
31 independent module, the terms and conditions of the license of that
32 module. An independent module is a module which is not derived from
33 or based on this library. If you modify this library, you may extend
34 this exception to your version of the library, but you are not
35 obligated to do so. If you do not wish to do so, delete this
36 exception statement from your version. */
38 #ifndef __VMI_H__
39 #define __VMI_H__
41 #include <jni.h>
43 typedef void * jframeID;
44 typedef void * jthread;
46 typedef enum {
47 VMI_ERROR_NONE,
48 VMI_ERROR_NULL_POINTER,
49 VMI_ERROR_OUT_OF_MEMORY,
50 VMI_ERROR_INVALID_METHODID,
51 VMI_ERROR_INVALID_CLASS,
52 VMI_ERROR_INVALID_BCI,
53 VMI_ERROR_NO_SUCH_BREAKPOINT,
54 VMI_ERROR_VM_DEAD,
55 VMI_ERROR_INVALID_FRAMEID,
56 VMI_ERROR_INVALID_SLOT,
57 VMI_ERROR_TYPE_MISMATCH,
58 VMI_ERROR_NATIVE_FRAME,
59 VMI_ERROR_NO_MORE_FRAMES,
60 VMI_ERROR_INVALID_THREAD,
61 VMI_ERROR_THREAD_NOT_SUSPENDED
62 } vmiError;
65 #define VMI_MOD_PUBLIC 0x0001
66 #define VMI_MOD_PRIVATE 0x0002
67 #define VMI_MOD_PROTECTED 0x0004
68 #define VMI_MOD_STATIC 0x0008
69 #define VMI_MOD_FINAL 0x0010
70 #define VMI_MOD_SYNCHRONIZED 0x0020
71 #define VMI_MOD_VOLATILE 0x0040
72 #define VMI_MOD_TRANSIENT 0x0080
73 #define VMI_MOD_NATIVE 0x0100
74 #define VMI_MOD_INTERFACE 0x0200
75 #define VMI_MOD_ABSTRACT 0x0400
77 JNIEXPORT vmiError JNICALL
78 VMI_GetFrameClass(JNIEnv *env, jframeID frame, jobject *obj);
80 JNIEXPORT vmiError JNICALL
81 VMI_GetFrameObject(JNIEnv *env, jframeID frame, jobject *obj);
83 JNIEXPORT vmiError JNICALL
84 VMI_GetThisFrame(JNIEnv *env, jframeID *frame);
86 JNIEXPORT vmiError JNICALL
87 VMI_GetThisThreadObject(JNIEnv *env, jthread *thread);
89 JNIEXPORT void JNICALL
90 VMI_ThrowAppropriateException(JNIEnv *env, vmiError err);
92 #endif