[svn:parrot] r41669 - in branches/pcc_reapply: include/parrot src

bacek at svn.parrot.org bacek at svn.parrot.org
Sun Oct 4 02:09:34 UTC 2009


Author: bacek
Date: Sun Oct  4 02:09:33 2009
New Revision: 41669
URL: https://trac.parrot.org/parrot/changeset/41669

Log:
Rerun headerizer

Modified:
   branches/pcc_reapply/include/parrot/extend.h
   branches/pcc_reapply/src/extend.c

Modified: branches/pcc_reapply/include/parrot/extend.h
==============================================================================
--- branches/pcc_reapply/include/parrot/extend.h	Sun Oct  4 02:09:15 2009	(r41668)
+++ branches/pcc_reapply/include/parrot/extend.h	Sun Oct  4 02:09:33 2009	(r41669)
@@ -65,7 +65,7 @@
 PARROT_WARN_UNUSED_RESULT
 PARROT_CAN_RETURN_NULL
 void * Parrot_call_method(PARROT_INTERP,
-    Parrot_PMC sub,
+    Parrot_PMC sub_pmc,
     Parrot_PMC obj,
     Parrot_String method,
     ARGIN(const char *signature),
@@ -75,7 +75,7 @@
 
 PARROT_EXPORT
 Parrot_Float Parrot_call_method_ret_float(PARROT_INTERP,
-    Parrot_PMC sub,
+    Parrot_PMC sub_pmc,
     Parrot_PMC obj,
     Parrot_String method,
     ARGIN(const char *signature),
@@ -85,7 +85,7 @@
 
 PARROT_EXPORT
 Parrot_Int Parrot_call_method_ret_int(PARROT_INTERP,
-    Parrot_PMC sub,
+    Parrot_PMC sub_pmc,
     Parrot_PMC obj,
     Parrot_String method,
     ARGIN(const char *signature),

Modified: branches/pcc_reapply/src/extend.c
==============================================================================
--- branches/pcc_reapply/src/extend.c	Sun Oct  4 02:09:15 2009	(r41668)
+++ branches/pcc_reapply/src/extend.c	Sun Oct  4 02:09:33 2009	(r41669)
@@ -1202,8 +1202,8 @@
 
 /*
 
-=item C<void * Parrot_call_method(PARROT_INTERP, Parrot_PMC sub, Parrot_PMC obj,
-Parrot_String method, const char *signature, ...)>
+=item C<void * Parrot_call_method(PARROT_INTERP, Parrot_PMC sub_pmc, Parrot_PMC
+obj, Parrot_String method, const char *signature, ...)>
 
 Call the parrot subroutine C<sub> as a method on PMC object C<obj>. The method
 should have the name C<method> as a Parrot_string, and should have a function
@@ -1269,7 +1269,7 @@
 
 /*
 
-=item C<Parrot_Int Parrot_call_method_ret_int(PARROT_INTERP, Parrot_PMC sub,
+=item C<Parrot_Int Parrot_call_method_ret_int(PARROT_INTERP, Parrot_PMC sub_pmc,
 Parrot_PMC obj, Parrot_String method, const char *signature, ...)>
 
 Call the parrot subroutine C<sub> as a method on PMC object C<obj>. The method
@@ -1313,8 +1313,8 @@
 
 /*
 
-=item C<Parrot_Float Parrot_call_method_ret_float(PARROT_INTERP, Parrot_PMC sub,
-Parrot_PMC obj, Parrot_String method, const char *signature, ...)>
+=item C<Parrot_Float Parrot_call_method_ret_float(PARROT_INTERP, Parrot_PMC
+sub_pmc, Parrot_PMC obj, Parrot_String method, const char *signature, ...)>
 
 Call a parrot method for the given object.
 


More information about the parrot-commits mailing list