Author: paultcochrane
Date: Mon Apr  9 01:37:51 2007
New Revision: 18053

Modified:
   trunk/src/ops/core.ops
   trunk/src/ops/debug.ops
   trunk/src/ops/experimental.ops
   trunk/src/ops/io.ops
   trunk/src/ops/object.ops

Log:
[src/ops] Converted TODO items into RT tickets


Modified: trunk/src/ops/core.ops
==============================================================================
--- trunk/src/ops/core.ops      (original)
+++ trunk/src/ops/core.ops      Mon Apr  9 01:37:51 2007
@@ -95,8 +95,8 @@
 
 =item B<load_bytecode>(in STR)
 
-Load Parrot bytecode from file $1, and (TODO) search the library path,
-to locate the file.
+Load Parrot bytecode from file $1, and 
+RT#42381 search the library path to locate the file.
 
 =cut
 

Modified: trunk/src/ops/debug.ops
==============================================================================
--- trunk/src/ops/debug.ops     (original)
+++ trunk/src/ops/debug.ops     Mon Apr  9 01:37:51 2007
@@ -82,7 +82,7 @@
 When you re run/continue the program begin debugged it will pay
 no attention to the debug ops.
 
-TODO: clone the interpreter to allow people to play into the
+RT#42377: clone the interpreter to allow people to play into the
 debugger and then continue the normal execution of the program.
 
 =cut
@@ -100,7 +100,7 @@
             command = interp->pdb->cur_command;
             PDB_run_command(interp,command);
         }
-        /* FIXME this is not ok */
+        /* RT#42378 this is not ok */
         exit(0);
     }
     interp->pdb->cur_opcode = (opcode_t *)cur_opcode + 1;
@@ -123,7 +123,7 @@
         PIO_eprintf(interp, "debug_print is disabled\n");
 #else
         /*
-         * XXX adjust register layout
+         * RT#42379 register layout
          */
         PDB_print_int(interp, &interp->int_reg, -1);
         PDB_print_num(interp, &interp->num_reg, -1);

Modified: trunk/src/ops/experimental.ops
==============================================================================
--- trunk/src/ops/experimental.ops      (original)
+++ trunk/src/ops/experimental.ops      Mon Apr  9 01:37:51 2007
@@ -440,7 +440,7 @@
 
 =back
 
-B<TODO> move/officalize this opcode at next op cleanup.
+RT#42375 move/officalize this opcode at next op cleanup.
 
 =cut
 
@@ -483,8 +483,8 @@
 
 =item B<add_io_event>(invar PMC, invar PMC, invar PMC, inconst INT)
 
-Call the sub $2 for PIO $1 with user data $3 on ready state of $4. XXX The
-only handled $4 = IO_THR_MSG_ADD_SELECT_RD aka 2 for now.
+Call the sub $2 for PIO $1 with user data $3 on ready state of $4. 
+RT#42376 The only handled $4 = IO_THR_MSG_ADD_SELECT_RD aka 2 for now.
 
 =cut
 

Modified: trunk/src/ops/io.ops
==============================================================================
--- trunk/src/ops/io.ops        (original)
+++ trunk/src/ops/io.ops        Mon Apr  9 01:37:51 2007
@@ -47,7 +47,7 @@
 
 Create ParrotIO object in $1 as a copy of file descriptor $2.
 
-XXX: integral file descriptors may not exist outside of the UNIX
+RT#42373: integral file descriptors might not exist outside of the UNIX
      platform.  This op needs work.
 
 =cut
@@ -61,7 +61,7 @@
     $1 = pmc_new(interp, enum_class_Undef);
   }
   /* string_cstring_free(mode); */
-  /* TODO all results from string_to_cstring() need freeing
+  /* RT#42374 all results from string_to_cstring() need freeing
      but this generates ugly warnings WRT discarding the const
      qualifier -lt
    */
@@ -72,7 +72,7 @@
 
 Get the file descriptor out of the ParrotIO object $2 and store it in $1
 
-XXX: integral file descriptors may not exist outside of the UNIX
+RT#42373: integral file descriptors might not exist outside of the UNIX
      platform.
 
 =cut

Modified: trunk/src/ops/object.ops
==============================================================================
--- trunk/src/ops/object.ops    (original)
+++ trunk/src/ops/object.ops    Mon Apr  9 01:37:51 2007
@@ -72,7 +72,7 @@
 
   object = $1;
   method_pmc = $2;
-  /* XXX should we check if object.can(method) */
+  /* RT#42371 should we check if object.can(method) */
 
   next = expr NEXT();
   interp->current_object = object;
@@ -233,7 +233,7 @@
 
 =item B<subclass>(out PMC, invar PMC, in PMC)
 
-KLUDGE ALERT - OPCODE NAME SHOULD DIFFER FROM BELOW - XXX FIXME
+RT#42372 KLUDGE ALERT - OPCODE NAME SHOULD DIFFER FROM BELOW
 
 Create a new class, put in $1, that is a subclass of $2.  $3, if available
 and not null, is the name of the new class--if not, the subclass is an
@@ -270,7 +270,7 @@
 
 =item B<subclass>(out PMC, in STR, in PMC)
 
-KLUDGE ALERT - OPCODE NAME SHOULD DIFFER FROM ABOVE - XXX FIXME
+RT#42372 KLUDGE ALERT - OPCODE NAME SHOULD DIFFER FROM ABOVE
 
 Create a new class, put in $1, that is a subclass of the class named $2.
 $3, if available and not null, is the name of the new class--if not, the

Reply via email to