Skip to content

Commit

Permalink
Add ipc to debug output
Browse files Browse the repository at this point in the history
enebo committed Jan 25, 2017
1 parent 565c3f2 commit 5015679
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -35,9 +35,13 @@ public int getExpectedVersion() {
return expectedVersion;
}

public int getIPC() {
return ipc;
}

@Override
public String[] toStringNonOperandArgs() {
return new String[] { "expected_version: " + expectedVersion};
return new String[] { "ipc: " + ipc, "expected_version: " + expectedVersion};
}

@Override
@@ -68,8 +72,4 @@ public Object interpret(ThreadContext context, StaticScope currScope, DynamicSco

return context.nil; /* not used */
}

public int getIPC() {
return ipc;
}
}

0 comments on commit 5015679

Please sign in to comment.