diff options
author | Keith Seitz <keiths@redhat.com> | 2006-10-12 18:18:52 +0000 |
---|---|---|
committer | Keith Seitz <kseitz@gcc.gnu.org> | 2006-10-12 18:18:52 +0000 |
commit | dc0aeb60698a2ec7ece635ea3378ba4961694976 (patch) | |
tree | a59311df19789cddd9c610f5d347433977ca6484 /libjava/include | |
parent | 59810d826e26617f8cc7ec5ec53056ab7a26237b (diff) | |
download | gcc-dc0aeb60698a2ec7ece635ea3378ba4961694976.zip gcc-dc0aeb60698a2ec7ece635ea3378ba4961694976.tar.gz gcc-dc0aeb60698a2ec7ece635ea3378ba4961694976.tar.bz2 |
jvmti-int.h (JVMTI): Declare all members "extern".
* include/jvmti-int.h (JVMTI): Declare all members "extern".
* jvmti.cc (JVMTI): Define.
From-SVN: r117670
Diffstat (limited to 'libjava/include')
-rw-r--r-- | libjava/include/jvmti-int.h | 70 |
1 files changed, 35 insertions, 35 deletions
diff --git a/libjava/include/jvmti-int.h b/libjava/include/jvmti-int.h index 36e0da8..f88b4ce 100644 --- a/libjava/include/jvmti-int.h +++ b/libjava/include/jvmti-int.h @@ -37,41 +37,41 @@ executable file might be covered by the GNU General Public License. */ False means no JVMTI environment requested that event type. */ namespace JVMTI { - bool VMInit; - bool VMDeath; - bool ThreadStart; - bool ThreadEnd; - bool ClassFileLoadHook; - bool ClassLoad; - bool ClassPrepare; - bool VMStart; - bool Exception; - bool ExceptionCatch; - bool SingleStep; - bool FramePop; - bool Breakpoint; - bool FieldAccess; - bool FieldModification; - bool MethodEntry; - bool MethodExit; - bool NativeMethodBind; - bool CompiledMethodLoad; - bool CompiledMethodUnload; - bool DynamicCodeGenerated; - bool DataDumpRequest; - bool reserved72; - bool MonitorWait; - bool MonitorWaited; - bool MonitorContendedEnter; - bool MonitorContendedEntered; - bool reserved77; - bool reserved78; - bool reserved79; - bool reserved80; - bool GarbageCollectionStart; - bool GarbageCollectionFinish; - bool ObjectFree; - bool VMObjectAlloc; + extern bool VMInit; + extern bool VMDeath; + extern bool ThreadStart; + extern bool ThreadEnd; + extern bool ClassFileLoadHook; + extern bool ClassLoad; + extern bool ClassPrepare; + extern bool VMStart; + extern bool Exception; + extern bool ExceptionCatch; + extern bool SingleStep; + extern bool FramePop; + extern bool Breakpoint; + extern bool FieldAccess; + extern bool FieldModification; + extern bool MethodEntry; + extern bool MethodExit; + extern bool NativeMethodBind; + extern bool CompiledMethodLoad; + extern bool CompiledMethodUnload; + extern bool DynamicCodeGenerated; + extern bool DataDumpRequest; + extern bool reserved72; + extern bool MonitorWait; + extern bool MonitorWaited; + extern bool MonitorContendedEnter; + extern bool MonitorContendedEntered; + extern bool reserved77; + extern bool reserved78; + extern bool reserved79; + extern bool reserved80; + extern bool GarbageCollectionStart; + extern bool GarbageCollectionFinish; + extern bool ObjectFree; + extern bool VMObjectAlloc; }; /* A macro to test whether an event should be posted to JVMTI.*/ |