VariableTable.java: Change longs to ints for argCnt and slots.

2007-04-04  Kyle Galloway  <kgallowa@redhat.com>

	* classpath/gnu/classpath/jdwp/util/VariableTable.java: Change longs
	to ints for argCnt and slots.
	(write): Replace writeLong with writeInt for the above.

From-SVN: r123511
This commit is contained in:
Kyle Galloway 2007-04-05 00:00:45 +00:00 committed by Kyle Galloway
parent 51a6c5b351
commit dabf62003e
4 changed files with 12 additions and 6 deletions

View file

@ -33,8 +33,8 @@ public:
VariableTable(jint, jint, JArray< jlong > *, JArray< ::java::lang::String * > *, JArray< ::java::lang::String * > *, JArray< jint > *, JArray< jint > *);
virtual void write(::java::io::DataOutputStream *);
private:
jlong __attribute__((aligned(__alignof__( ::java::lang::Object)))) argCnt;
jlong slots;
jint __attribute__((aligned(__alignof__( ::java::lang::Object)))) argCnt;
jint slots;
JArray< jlong > * lineCI;
JArray< jint > * slot;
JArray< jint > * lengths;