| 1 | // jvm.h - Header file for private implementation information. -*- c++ -*-
|
|---|
| 2 |
|
|---|
| 3 | /* Copyright (C) 1998, 1999, 2000, 2001, 2002 Free Software Foundation
|
|---|
| 4 |
|
|---|
| 5 | This file is part of libgcj.
|
|---|
| 6 |
|
|---|
| 7 | This software is copyrighted work licensed under the terms of the
|
|---|
| 8 | Libgcj License. Please consult the file "LIBGCJ_LICENSE" for
|
|---|
| 9 | details. */
|
|---|
| 10 |
|
|---|
| 11 | #ifndef __JAVA_JVM_H__
|
|---|
| 12 | #define __JAVA_JVM_H__
|
|---|
| 13 |
|
|---|
| 14 | // Define this before including jni.h.
|
|---|
| 15 | // jni.h is included by jvmpi.h, which might be included. We define
|
|---|
| 16 | // this unconditionally because it is convenient and it lets other
|
|---|
| 17 | // files include jni.h without difficulty.
|
|---|
| 18 | #define __GCJ_JNI_IMPL__
|
|---|
| 19 |
|
|---|
| 20 | #include <gcj/javaprims.h>
|
|---|
| 21 |
|
|---|
| 22 | #include <java-assert.h>
|
|---|
| 23 | #include <java-threads.h>
|
|---|
|
|---|