Skip to content

Commit

Permalink
Merge with head
Browse files Browse the repository at this point in the history
  • Loading branch information
Ian Rogers committed Mar 16, 2009
2 parents 047161c + ce15478 commit ffdb2c9
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 5 deletions.
2 changes: 1 addition & 1 deletion libraryInterface/Common/src/java/lang/Class.java
Original file line number Diff line number Diff line change
Expand Up @@ -557,7 +557,7 @@ private static boolean validArrayDescriptor(String name) {
@NoInline
private void throwNoSuchMethodException(String name, Class<?>... parameterTypes) throws NoSuchMethodException {
String typeString;
if (parameterTypes.length == 0) {
if (parameterTypes == null || parameterTypes.length == 0) {
typeString = "()";
} else {
typeString = "(";
Expand Down
2 changes: 1 addition & 1 deletion rvm/src/org/jikesrvm/runtime/BootRecord.java
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ public void setHeapRange(int id, Address start, Address end) {
public Address sysThreadSelfIP;
public Address sysStashVMThreadIP;
public Address sysThreadTerminateIP;

// monitors
public Address sysMonitorCreateIP;
public Address sysMonitorDestroyIP;
Expand Down
2 changes: 1 addition & 1 deletion rvm/src/org/jikesrvm/runtime/SysCall.java
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ public abstract class SysCall {

@SysCallTemplate
public abstract boolean sysMemoryDecommit(Address start, Extent length);

@SysCallTemplate
public abstract int sysGetPageSize();

Expand Down
1 change: 0 additions & 1 deletion rvm/src/org/jikesrvm/scheduler/RVMThread.java
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,6 @@
import org.vmmagic.pragma.Untraced;
import org.vmmagic.pragma.NoCheckStore;
import org.vmmagic.unboxed.Address;
import org.vmmagic.unboxed.Word;
import org.vmmagic.unboxed.Offset;
import static org.jikesrvm.runtime.SysCall.sysCall;
import org.jikesrvm.classloader.RVMMethod;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@
import org.jikesrvm.classloader.RVMField;
import org.jikesrvm.classloader.TypeReference;
import org.jikesrvm.objectmodel.ObjectModel;
import org.jikesrvm.objectmodel.ThinLockConstants;
import org.jikesrvm.runtime.ArchEntrypoints;
import org.jikesrvm.runtime.Entrypoints;
import org.jikesrvm.runtime.RuntimeEntrypoints;
Expand Down

0 comments on commit ffdb2c9

Please sign in to comment.