cvsuser 05/04/04 07:13:43
Modified: classes parrotinterpreter.pmc
Log:
Fix calling signature so it's in line with leo's recent change of I->J.
Revision Changes Path
1.35 +6 -6 parrot/classes/parrotinterpreter.pmc
Index: parrotinterpreter.pmc
===================================================================
RCS file: /cvs/public/parrot/classes/parrotinterpreter.pmc,v
retrieving revision 1.34
retrieving revision 1.35
diff -u -r1.34 -r1.35
--- parrotinterpreter.pmc 17 Nov 2004 10:35:28 -0000 1.34
+++ parrotinterpreter.pmc 4 Apr 2005 14:13:42 -0000 1.35
@@ -276,11 +276,11 @@
* thread start methods for threads type 1..3
*/
enter_nci_method(INTERP, typ,
- F2DPTR(pt_thread_run_1), "thread1", "vIOP");
+ F2DPTR(pt_thread_run_1), "thread1", "vJOP");
enter_nci_method(INTERP, typ,
- F2DPTR(pt_thread_run_2), "thread2", "vIOP");
+ F2DPTR(pt_thread_run_2), "thread2", "vJOP");
enter_nci_method(INTERP, typ,
- F2DPTR(pt_thread_run_3), "thread3", "vIOP");
+ F2DPTR(pt_thread_run_3), "thread3", "vJOP");
/*
* TODO unify and fix signatures
@@ -288,7 +288,7 @@
enter_nci_method(INTERP, typ,
F2DPTR(pt_thread_yield), "yield", "v");
enter_nci_method(INTERP, typ,
- F2DPTR(pt_thread_join), "join", "PIi");
+ F2DPTR(pt_thread_join), "join", "PJi");
enter_nci_method(INTERP, typ,
F2DPTR(pt_thread_detach), "detach", "vi");
enter_nci_method(INTERP, typ,
@@ -298,7 +298,7 @@
* misc functions
*/
enter_nci_method(INTERP, typ,
- F2DPTR(recursion_limit), "recursion_limit", "iIi");
+ F2DPTR(recursion_limit), "recursion_limit", "iJi");
}
}