diff options
author | Keith Seitz <keiths@redhat.com> | 2007-01-25 00:40:45 +0000 |
---|---|---|
committer | Keith Seitz <kseitz@gcc.gnu.org> | 2007-01-25 00:40:45 +0000 |
commit | c422af91adbec73a52b9c5d39edc7d916c2a974c (patch) | |
tree | 834b5c670bb4dfe1154b6c6ad668f8be9b37c68b /libjava/interpret.cc | |
parent | 3c727a410ce674ef1310b86238efb7a83aafff31 (diff) | |
download | gcc-c422af91adbec73a52b9c5d39edc7d916c2a974c.zip gcc-c422af91adbec73a52b9c5d39edc7d916c2a974c.tar.gz gcc-c422af91adbec73a52b9c5d39edc7d916c2a974c.tar.bz2 |
interpret.cc: Include gnu/gcj/jvmti/Breakpoint.h...
* interpret.cc: Include gnu/gcj/jvmti/Breakpoint.h,
gnu/gcj/jvmti/BreakpointManager.h, jvmti.h, and jvmti-int.h
* interpret-run.cc: Implement insn_breakpoint.
From-SVN: r121155
Diffstat (limited to 'libjava/interpret.cc')
-rw-r--r-- | libjava/interpret.cc | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/libjava/interpret.cc b/libjava/interpret.cc index dc63cc8..075a15a 100644 --- a/libjava/interpret.cc +++ b/libjava/interpret.cc @@ -1,6 +1,6 @@ // interpret.cc - Code for the interpreter -/* Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006 Free Software Foundation +/* Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007 Free Software Foundation This file is part of libgcj. @@ -37,7 +37,12 @@ details. */ #include <execution.h> #include <java/lang/reflect/Modifier.h> +#include <jvmti.h> +#include "jvmti-int.h" + #include <gnu/classpath/jdwp/Jdwp.h> +#include <gnu/gcj/jvmti/Breakpoint.h> +#include <gnu/gcj/jvmti/BreakpointManager.h> #ifdef INTERPRETER |