mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-27 14:54:52 +02:00
8250612: jvmciCompilerToVM.cpp declares jio_printf with "void" return type, should be "int"
Reviewed-by: thartmann, kvn
This commit is contained in:
parent
a72a8984a9
commit
3349e10b7f
1 changed files with 1 additions and 1 deletions
|
@ -1573,7 +1573,7 @@ C2V_END
|
||||||
|
|
||||||
// Creates a scope where the current thread is attached and detached
|
// Creates a scope where the current thread is attached and detached
|
||||||
// from HotSpot if it wasn't already attached when entering the scope.
|
// from HotSpot if it wasn't already attached when entering the scope.
|
||||||
extern "C" void jio_printf(const char *fmt, ...);
|
extern "C" int jio_printf(const char *fmt, ...);
|
||||||
class AttachDetach : public StackObj {
|
class AttachDetach : public StackObj {
|
||||||
public:
|
public:
|
||||||
bool _attached;
|
bool _attached;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue