mirror of
https://github.com/corda/corda.git
synced 2025-01-07 13:38:47 +00:00
2a43e68c16
So there I was, planning to just fix one little bug: Thread.holdsLock and Thread.yield were missing for the Android class library. Easy enough, right? So, I added a test, got it passing, and figured I'd go ahead and run ci.sh with all three class libraries. Big mistake. Here's the stuff I found: * minor inconsistency in README.md about OpenSSL version * untested, broken Class.getEnclosingMethod (reported by Josh) * JNI test failed for tails=true Android build * Runtime.nativeExit missing for Android build * obsolete assertion in CallEvent broke tails=true Android build * obsolete superclass field offset padding broke bootimage=true Android build * runtime annotation parsing broke bootimage=true Android build (because we couldn't modify Addendum.annotationTable for classes in the heap image) * ci.sh tried building with both android=... and openjdk=..., which the makefile rightfully balked at Sorry this is all in a single commit; I didn't expect so many unrelated issues, and I'm too lazy to break them apart.
29 lines
908 B
Java
29 lines
908 B
Java
/* Copyright (c) 2008-2014, Avian Contributors
|
|
|
|
Permission to use, copy, modify, and/or distribute this software
|
|
for any purpose with or without fee is hereby granted, provided
|
|
that the above copyright notice and this permission notice appear
|
|
in all copies.
|
|
|
|
There is NO WARRANTY for this software. See license.txt for
|
|
details. */
|
|
|
|
package avian;
|
|
|
|
public class ClassAddendum extends Addendum {
|
|
public Object[] interfaceTable;
|
|
public InnerClassReference[] innerClassTable;
|
|
/**
|
|
* If this value is negative, all the methods in VMClass.methodTable
|
|
* were declared in that class. Otherwise, only the first
|
|
* declaredMethodCount methods in that table were declared in that
|
|
* class, while the rest were declared in interfaces implemented or
|
|
* extended by that class.
|
|
*/
|
|
public int declaredMethodCount;
|
|
|
|
public byte[] enclosingClass;
|
|
|
|
public Pair enclosingMethod;
|
|
}
|