cvsuser 02/06/06 14:17:05
Modified: include/parrot key.h
Log:
Keys are now a type of Buffer so the GC won't do Evil Things when
running through the S registerss
Revision Changes Path
1.12 +4 -2 parrot/include/parrot/key.h
Index: key.h
===================================================================
RCS file: /cvs/public/parrot/include/parrot/key.h,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -w -r1.11 -r1.12
--- key.h 15 May 2002 01:45:09 -0000 1.11
+++ key.h 6 Jun 2002 21:17:05 -0000 1.12
@@ -1,7 +1,7 @@
/* key.h
* Copyright: (When this is determined...it will go here)
* CVS Info
- * $Id: key.h,v 1.11 2002/05/15 01:45:09 jgoff Exp $
+ * $Id: key.h,v 1.12 2002/06/06 21:17:05 dan Exp $
* Overview:
* This is the api header for the pmc subsystem
* Data Structure and Algorithms:
@@ -32,8 +32,10 @@
typedef struct _key KEY;
struct _key {
- KEY_ATOM atom;
KEY* next;
+ INTVAL pad;
+ UINTVAL flags;
+ KEY_ATOM atom;
};
KEY * key_new(Interp *interpreter);