Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
R
riscv-gcc-1
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
riscv-gcc-1
Commits
c56b658b
Commit
c56b658b
authored
Jan 23, 2007
by
Keith Seitz
Committed by
Keith Seitz
Jan 23, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* gnu/classpath/jdwp/natVMVirtualMachine.cc
(getClassMethod): Implement. From-SVN: r121078
parent
2b3c6788
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
2 deletions
+13
-2
libjava/ChangeLog
+5
-0
libjava/gnu/classpath/jdwp/natVMVirtualMachine.cc
+8
-2
No files found.
libjava/ChangeLog
View file @
c56b658b
2007-01-22 Keith Seitz <keiths@redhat.com>
* gnu/classpath/jdwp/natVMVirtualMachine.cc
(getClassMethod): Implement.
2007-01-22 Keith Seitz <keiths@redhat.com>
* java/lang/Class.h (_Jv_GetClassStatus): Declare.
...
...
libjava/gnu/classpath/jdwp/natVMVirtualMachine.cc
View file @
c56b658b
...
...
@@ -30,6 +30,7 @@ details. */
#include <gnu/classpath/jdwp/VMVirtualMachine.h>
#include <gnu/classpath/jdwp/event/EventRequest.h>
#include <gnu/classpath/jdwp/event/VmInitEvent.h>
#include <gnu/classpath/jdwp/exception/InvalidMethodException.h>
#include <gnu/classpath/jdwp/exception/JdwpInternalErrorException.h>
#include <gnu/classpath/jdwp/util/MethodResult.h>
...
...
@@ -307,9 +308,14 @@ getAllClassMethods (MAYBE_UNUSED jclass klass)
gnu
::
classpath
::
jdwp
::
VMMethod
*
gnu
::
classpath
::
jdwp
::
VMVirtualMachine
::
getClassMethod
(
MAYBE_UNUSED
jclass
klass
,
MAYBE_UNUSED
jlong
id
)
getClassMethod
(
jclass
klass
,
jlong
id
)
{
return
NULL
;
jmethodID
method
=
reinterpret_cast
<
jmethodID
>
(
id
);
_Jv_MethodBase
*
bmeth
=
_Jv_FindInterpreterMethod
(
klass
,
method
);
if
(
bmeth
!=
NULL
)
return
new
gnu
::
classpath
::
jdwp
::
VMMethod
(
klass
,
id
);
throw
new
gnu
::
classpath
::
jdwp
::
exception
::
InvalidMethodException
(
id
);
}
java
::
util
::
ArrayList
*
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment