Update of /cvsroot/squeak/squeak/platforms/Cross/vm
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13644/platforms/Cross/vm
Modified Files:
Tag: ned-branch
sqVirtualMachine.h
Log Message:
added Tim's new v6 change for isArray()
Index: sqVirtualMachine.h
===================================================================
RCS file: /cvsroot/squeak/squeak/platforms/Cross/vm/sqVirtualMachine.h,v
retrieving revision 1.4
retrieving revision 1.4.6.1
diff -C2 -d -r1.4 -r1.4.6.1
*** sqVirtualMachine.h 5 May 2002 18:56:07 -0000 1.4
--- sqVirtualMachine.h 21 Feb 2004 21:21:02 -0000 1.4.6.1
***************
*** 10,14 ****
#ifndef VM_PROXY_MINOR
/* Increment the following number if you add functions at the end */
! #define VM_PROXY_MINOR 5
#endif
--- 10,14 ----
#ifndef VM_PROXY_MINOR
/* Increment the following number if you add functions at the end */
! #define VM_PROXY_MINOR 6
#endif
***************
*** 191,194 ****
--- 191,199 ----
#endif
+ #if VM_PROXY_MINOR > 5
+ /* new for 1.6 */
+ int (*isArray)(int oop);
+ #endif
+
} VirtualMachine;
|