[svn:parrot] r44581 - branches/rm_cflags/src/ops
bacek at svn.parrot.org
bacek at svn.parrot.org
Tue Mar 2 06:57:55 UTC 2010
Author: bacek
Date: Tue Mar 2 06:57:54 2010
New Revision: 44581
URL: https://trac.parrot.org/parrot/changeset/44581
Log:
Fix core.ops syntax.
Modified:
branches/rm_cflags/src/ops/core.ops
Modified: branches/rm_cflags/src/ops/core.ops
==============================================================================
--- branches/rm_cflags/src/ops/core.ops Tue Mar 2 06:32:44 2010 (r44580)
+++ branches/rm_cflags/src/ops/core.ops Tue Mar 2 06:57:54 2010 (r44581)
@@ -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