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
89281911
Commit
89281911
authored
Feb 02, 2000
by
Tom Tromey
Committed by
Tom Tromey
Feb 02, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* include/jni.h (class _Jv_JNIEnv): Corrected calls using `...'.
From-SVN: r31745
parent
78a0d70c
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
10 deletions
+12
-10
libjava/ChangeLog
+2
-0
libjava/include/jni.h
+10
-10
No files found.
libjava/ChangeLog
View file @
89281911
2000-02-01 Tom Tromey <tromey@cygnus.com>
* include/jni.h (class _Jv_JNIEnv): Corrected calls using `...'.
* include/jni.h (class _Jv_JNIEnv): Added all C++ inline methods.
* jni.cc (_Jv_JNI_PopLocalFrame): Leave loop when `n == NULL'.
...
...
libjava/include/jni.h
View file @
89281911
...
...
@@ -790,7 +790,7 @@ public:
jobject
CallNonvirtualObjectMethod
(
jobject
obj0
,
jclass
cl1
,
jmethodID
meth2
,
...)
{
_Jv_va_list
args
;
va_start
(
args
,
cl1
);
va_start
(
args
,
meth2
);
jobject
result
=
p
->
CallNonvirtualObjectMethodV
(
this
,
obj0
,
cl1
,
meth2
,
args
);
va_end
(
args
);
return
result
;
...
...
@@ -805,7 +805,7 @@ public:
jboolean
CallNonvirtualBooleanMethod
(
jobject
obj0
,
jclass
cl1
,
jmethodID
meth2
,
...)
{
_Jv_va_list
args
;
va_start
(
args
,
cl1
);
va_start
(
args
,
meth2
);
jboolean
result
=
p
->
CallNonvirtualBooleanMethodV
(
this
,
obj0
,
cl1
,
meth2
,
args
);
va_end
(
args
);
return
result
;
...
...
@@ -820,7 +820,7 @@ public:
jbyte
CallNonvirtualByteMethod
(
jobject
obj0
,
jclass
cl1
,
jmethodID
meth2
,
...)
{
_Jv_va_list
args
;
va_start
(
args
,
cl1
);
va_start
(
args
,
meth2
);
jbyte
result
=
p
->
CallNonvirtualByteMethodV
(
this
,
obj0
,
cl1
,
meth2
,
args
);
va_end
(
args
);
return
result
;
...
...
@@ -835,7 +835,7 @@ public:
jchar
CallNonvirtualCharMethod
(
jobject
obj0
,
jclass
cl1
,
jmethodID
meth2
,
...)
{
_Jv_va_list
args
;
va_start
(
args
,
cl1
);
va_start
(
args
,
meth2
);
jchar
result
=
p
->
CallNonvirtualCharMethodV
(
this
,
obj0
,
cl1
,
meth2
,
args
);
va_end
(
args
);
return
result
;
...
...
@@ -850,7 +850,7 @@ public:
jshort
CallNonvirtualShortMethod
(
jobject
obj0
,
jclass
cl1
,
jmethodID
meth2
,
...)
{
_Jv_va_list
args
;
va_start
(
args
,
cl1
);
va_start
(
args
,
meth2
);
jshort
result
=
p
->
CallNonvirtualShortMethodV
(
this
,
obj0
,
cl1
,
meth2
,
args
);
va_end
(
args
);
return
result
;
...
...
@@ -865,7 +865,7 @@ public:
jint
CallNonvirtualIntMethod
(
jobject
obj0
,
jclass
cl1
,
jmethodID
meth2
,
...)
{
_Jv_va_list
args
;
va_start
(
args
,
cl1
);
va_start
(
args
,
meth2
);
jint
result
=
p
->
CallNonvirtualIntMethodV
(
this
,
obj0
,
cl1
,
meth2
,
args
);
va_end
(
args
);
return
result
;
...
...
@@ -880,7 +880,7 @@ public:
jlong
CallNonvirtualLongMethod
(
jobject
obj0
,
jclass
cl1
,
jmethodID
meth2
,
...)
{
_Jv_va_list
args
;
va_start
(
args
,
cl1
);
va_start
(
args
,
meth2
);
jlong
result
=
p
->
CallNonvirtualLongMethodV
(
this
,
obj0
,
cl1
,
meth2
,
args
);
va_end
(
args
);
return
result
;
...
...
@@ -895,7 +895,7 @@ public:
jfloat
CallNonvirtualFloatMethod
(
jobject
obj0
,
jclass
cl1
,
jmethodID
meth2
,
...)
{
_Jv_va_list
args
;
va_start
(
args
,
cl1
);
va_start
(
args
,
meth2
);
jfloat
result
=
p
->
CallNonvirtualFloatMethodV
(
this
,
obj0
,
cl1
,
meth2
,
args
);
va_end
(
args
);
return
result
;
...
...
@@ -910,7 +910,7 @@ public:
jdouble
CallNonvirtualDoubleMethod
(
jobject
obj0
,
jclass
cl1
,
jmethodID
meth2
,
...)
{
_Jv_va_list
args
;
va_start
(
args
,
cl1
);
va_start
(
args
,
meth2
);
jdouble
result
=
p
->
CallNonvirtualDoubleMethodV
(
this
,
obj0
,
cl1
,
meth2
,
args
);
va_end
(
args
);
return
result
;
...
...
@@ -925,7 +925,7 @@ public:
void
CallNonvirtualVoidMethod
(
jobject
obj0
,
jclass
cl1
,
jmethodID
meth2
,
...)
{
_Jv_va_list
args
;
va_start
(
args
,
cl1
);
va_start
(
args
,
meth2
);
p
->
CallNonvirtualVoidMethodV
(
this
,
obj0
,
cl1
,
meth2
,
args
);
va_end
(
args
);
}
...
...
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