natVMVirtualMachine.cc: Mark unused parameters in methods and reformat.
* gnu/classpath/jdwp/natVMVirtualMachine.cc: Mark unused parameters in methods and reformat. From-SVN: r120971
This commit is contained in:
parent
c3056c2d23
commit
80e9603862
2 changed files with 34 additions and 23 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
2007-01-19 Keith Seitz <keiths@redhat.com>
|
||||||
|
|
||||||
|
* gnu/classpath/jdwp/natVMVirtualMachine.cc: Mark unused parameters
|
||||||
|
in methods and reformat.
|
||||||
|
|
||||||
2007-01-18 Keith Seitz <keiths@redhat.com>
|
2007-01-18 Keith Seitz <keiths@redhat.com>
|
||||||
|
|
||||||
From Macro Trudel <mtrudel@gmx.ch>:
|
From Macro Trudel <mtrudel@gmx.ch>:
|
||||||
|
|
|
@ -62,7 +62,7 @@ gnu::classpath::jdwp::VMVirtualMachine::initialize ()
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
gnu::classpath::jdwp::VMVirtualMachine ::suspendThread (Thread *thread)
|
gnu::classpath::jdwp::VMVirtualMachine::suspendThread (Thread *thread)
|
||||||
{
|
{
|
||||||
jint value;
|
jint value;
|
||||||
Integer *count;
|
Integer *count;
|
||||||
|
@ -213,7 +213,7 @@ gnu::classpath::jdwp::VMVirtualMachine::registerEvent (EventRequest *request)
|
||||||
|
|
||||||
case EventRequest::EVENT_VM_INIT:
|
case EventRequest::EVENT_VM_INIT:
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case EventRequest::EVENT_VM_DEATH:
|
case EventRequest::EVENT_VM_DEATH:
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
@ -244,7 +244,7 @@ gnu::classpath::jdwp::VMVirtualMachine::unregisterEvent (EventRequest *request)
|
||||||
|
|
||||||
case EventRequest::EVENT_THREAD_END:
|
case EventRequest::EVENT_THREAD_END:
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case EventRequest::EVENT_CLASS_PREPARE:
|
case EventRequest::EVENT_CLASS_PREPARE:
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
@ -268,14 +268,14 @@ gnu::classpath::jdwp::VMVirtualMachine::unregisterEvent (EventRequest *request)
|
||||||
|
|
||||||
case EventRequest::EVENT_VM_INIT:
|
case EventRequest::EVENT_VM_INIT:
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case EventRequest::EVENT_VM_DEATH:
|
case EventRequest::EVENT_VM_DEATH:
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
gnu::classpath::jdwp::VMVirtualMachine::clearEvents (jbyte kind)
|
gnu::classpath::jdwp::VMVirtualMachine::clearEvents (MAYBE_UNUSED jbyte kind)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -292,69 +292,75 @@ gnu::classpath::jdwp::VMVirtualMachine::getAllLoadedClasses (void)
|
||||||
}
|
}
|
||||||
|
|
||||||
jint
|
jint
|
||||||
gnu::classpath::jdwp::VMVirtualMachine::getClassStatus (jclass klass)
|
gnu::classpath::jdwp::VMVirtualMachine::
|
||||||
|
getClassStatus (MAYBE_UNUSED jclass klass)
|
||||||
{
|
{
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
JArray<gnu::classpath::jdwp::VMMethod *> *
|
JArray<gnu::classpath::jdwp::VMMethod *> *
|
||||||
gnu::classpath::jdwp::VMVirtualMachine::getAllClassMethods (jclass klass)
|
gnu::classpath::jdwp::VMVirtualMachine::
|
||||||
|
getAllClassMethods (MAYBE_UNUSED jclass klass)
|
||||||
{
|
{
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
gnu::classpath::jdwp::VMMethod *
|
gnu::classpath::jdwp::VMMethod *
|
||||||
gnu::classpath::jdwp::VMVirtualMachine::getClassMethod (jclass klass, jlong id)
|
gnu::classpath::jdwp::VMVirtualMachine::
|
||||||
|
getClassMethod (MAYBE_UNUSED jclass klass, MAYBE_UNUSED jlong id)
|
||||||
{
|
{
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
java::util::ArrayList *
|
java::util::ArrayList *
|
||||||
gnu::classpath::jdwp::VMVirtualMachine::getFrames (Thread *thread,
|
gnu::classpath::jdwp::VMVirtualMachine::getFrames (MAYBE_UNUSED Thread *thread,
|
||||||
jint start,
|
MAYBE_UNUSED jint start,
|
||||||
jint length)
|
MAYBE_UNUSED jint length)
|
||||||
{
|
{
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
gnu::classpath::jdwp::VMFrame *
|
gnu::classpath::jdwp::VMFrame *
|
||||||
gnu::classpath::jdwp::VMVirtualMachine::getFrame (Thread *thread,
|
gnu::classpath::jdwp::VMVirtualMachine::
|
||||||
::java::nio::ByteBuffer *bb)
|
getFrame (MAYBE_UNUSED Thread *thread, MAYBE_UNUSED::java::nio::ByteBuffer *bb)
|
||||||
{
|
{
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
jint
|
jint
|
||||||
gnu::classpath::jdwp::VMVirtualMachine::getFrameCount (Thread *thread)
|
gnu::classpath::jdwp::VMVirtualMachine::
|
||||||
|
getFrameCount (MAYBE_UNUSED Thread *thread)
|
||||||
{
|
{
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
jint
|
jint
|
||||||
gnu::classpath::jdwp::VMVirtualMachine::getThreadStatus (Thread *thread)
|
gnu::classpath::jdwp::VMVirtualMachine::
|
||||||
|
getThreadStatus (MAYBE_UNUSED Thread *thread)
|
||||||
{
|
{
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
java::util::ArrayList *
|
java::util::ArrayList *
|
||||||
gnu::classpath::jdwp::VMVirtualMachine::getLoadRequests (ClassLoader *cl)
|
gnu::classpath::jdwp::VMVirtualMachine::
|
||||||
|
getLoadRequests (MAYBE_UNUSED ClassLoader *cl)
|
||||||
{
|
{
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
MethodResult *
|
MethodResult *
|
||||||
gnu::classpath::jdwp::VMVirtualMachine::executeMethod (jobject obj,
|
gnu::classpath::jdwp::VMVirtualMachine::
|
||||||
Thread *thread,
|
executeMethod (MAYBE_UNUSED jobject obj, MAYBE_UNUSED Thread *thread,
|
||||||
jclass clazz,
|
MAYBE_UNUSED jclass clazz, MAYBE_UNUSED reflect::Method *method,
|
||||||
reflect::Method *method,
|
MAYBE_UNUSED jobjectArray values,
|
||||||
jobjectArray values,
|
MAYBE_UNUSED jboolean nonVirtual)
|
||||||
jboolean nonVirtual)
|
|
||||||
{
|
{
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
jstring
|
jstring
|
||||||
gnu::classpath::jdwp::VMVirtualMachine::getSourceFile (jclass clazz)
|
gnu::classpath::jdwp::VMVirtualMachine::
|
||||||
|
getSourceFile (MAYBE_UNUSED jclass clazz)
|
||||||
{
|
{
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue