[svn:parrot] r44596 - trunk/src/ops

bacek at svn.parrot.org bacek at svn.parrot.org
Tue Mar 2 20:44:38 UTC 2010


Author: bacek
Date: Tue Mar  2 20:44:37 2010
New Revision: 44596
URL: https://trac.parrot.org/parrot/changeset/44596

Log:
Fix core.ops syntax.

Modified:
   trunk/src/ops/core.ops

Modified: trunk/src/ops/core.ops
==============================================================================
--- trunk/src/ops/core.ops	Tue Mar  2 20:29:39 2010	(r44595)
+++ trunk/src/ops/core.ops	Tue Mar  2 20:44:37 2010	(r44596)
@@ -671,6 +671,8 @@
 Register a task with the concurrency scheduler. Details about the task are
 stored within the task PMC.
 
+=cut
+
 inline op schedule(invar PMC) {
     Parrot_cx_schedule_task(interp, $1);
 }
@@ -680,6 +682,8 @@
 Add an event or exception handler to the concurrency scheduler. Details about
 the handler are stored within the handler PMC.
 
+=cut
+
 inline op addhandler(invar PMC) {
     Parrot_cx_add_handler(interp, $1);
 }


More information about the parrot-commits mailing list