Author: allison
Date: Sun Nov 23 13:19:32 2008
New Revision: 33071

Modified:
   branches/pdd22io_part2/src/thread.c

Log:
[pdd22io] Convert all calls to old I/O system in src/thread.c.


Modified: branches/pdd22io_part2/src/thread.c
==============================================================================
--- branches/pdd22io_part2/src/thread.c (original)
+++ branches/pdd22io_part2/src/thread.c Sun Nov 23 13:19:32 2008
@@ -458,7 +458,7 @@
         PMC *exception = Parrot_cx_peek_task(interp);
         /* caught exception */
         /* XXX what should we really do here */
-        PIO_eprintf(interp,
+        Parrot_io_eprintf(interp,
                     "Unhandled exception in thread with tid %d "
                     "(message=%Ss, number=%d)\n",
                     interp->thread_data->tid,
@@ -643,7 +643,7 @@
 pt_transfer_sub(ARGOUT(Parrot_Interp d), ARGIN(Parrot_Interp s), ARGIN(PMC 
*sub))
 {
 #if defined THREAD_DEBUG && THREAD_DEBUG
-    PIO_eprintf(s, "copying over subroutine [%Ss]\n",
+    Parrot_io_eprintf(s, "copying over subroutine [%Ss]\n",
         Parrot_full_sub_name(s, sub));
 #endif
     return make_local_copy(d, s, sub);

Reply via email to