示例#1
0
void fastiva_Dalvik_java_lang_Object_notifyAll(java_lang_Object_p thisPtr) {
	Thread* self = dvmThreadSelf();
#endif

    dvmObjectNotifyAll(self, thisPtr);
    MAY_THROW_VOID();
}
/*
 * public void notifyAll()
 */
static void Dalvik_java_lang_Object_notifyAll(const u4* args, JValue* pResult,
    const Method* method, Thread* self)
{
    Object* thisPtr = (Object*) args[0];

    dvmObjectNotifyAll(self, thisPtr);
    RETURN_VOID();
}