[svn:parrot] r42847 - branches/cs_csr_merge/src/pmc

bacek at svn.parrot.org bacek at svn.parrot.org
Wed Dec 2 08:51:46 UTC 2009


Author: bacek
Date: Wed Dec  2 08:51:45 2009
New Revision: 42847
URL: https://trac.parrot.org/parrot/changeset/42847

Log:
Copy CSR attributes into CS.

Modified:
   branches/cs_csr_merge/src/pmc/callsignature.pmc

Modified: branches/cs_csr_merge/src/pmc/callsignature.pmc
==============================================================================
--- branches/cs_csr_merge/src/pmc/callsignature.pmc	Wed Dec  2 08:51:42 2009	(r42846)
+++ branches/cs_csr_merge/src/pmc/callsignature.pmc	Wed Dec  2 08:51:45 2009	(r42847)
@@ -368,6 +368,10 @@
     ATTR Hash   *hash;                 /* Hash of named arguments */
     ATTR INTVAL  num_positionals;      /* count of positionals */
 
+    /* Storage for returns */
+    ATTR void     **returns_values;             /* stored pointers */
+    ATTR INTVAL     returns_size;               /* number of stored elements */
+    ATTR INTVAL     returns_resize_threshold;   /* max size before resizing array */
 /*
 
 =item C<void init()>


More information about the parrot-commits mailing list