cvsuser 03/07/01 11:22:01
Modified: . embed.c trace.c
Log:
Some fixup patches
Juergen Boemmels <[EMAIL PROTECTED]>
Revision Changes Path
1.70 +3 -4 parrot/embed.c
Index: embed.c
===================================================================
RCS file: /cvs/public/parrot/embed.c,v
retrieving revision 1.69
retrieving revision 1.70
diff -u -w -r1.69 -r1.70
--- embed.c 1 Jul 2003 15:41:00 -0000 1.69
+++ embed.c 1 Jul 2003 18:22:01 -0000 1.70
@@ -1,7 +1,7 @@
/* embed.c
* Copyright: (When this is determined...it will go here)
* CVS Info
- * $Id: embed.c,v 1.69 2003/07/01 15:41:00 dan Exp $
+ * $Id: embed.c,v 1.70 2003/07/01 18:22:01 dan Exp $
* Overview:
* The Parrot embedding interface.
* Data Structure and Algorithms:
@@ -220,9 +220,8 @@
#else /* HAS_HEADER_SYSMMAN */
- PIO_fprintf(interpreter, PIO_STDERR(interpreter),
- "Parrot VM: uncaught error occurred reading file "
- "or mmap not available.\n");
+ PIO_eprintf(interpreter, "Parrot VM: uncaught error occurred reading "
+ "file or mmap not available.\n");
return NULL;
#endif /* HAS_HEADER_SYSMMAN */
1.35 +2 -2 parrot/trace.c
Index: trace.c
===================================================================
RCS file: /cvs/public/parrot/trace.c,v
retrieving revision 1.34
retrieving revision 1.35
diff -u -w -r1.34 -r1.35
--- trace.c 14 Jun 2003 17:48:31 -0000 1.34
+++ trace.c 1 Jul 2003 18:22:01 -0000 1.35
@@ -1,7 +1,7 @@
/* trace.c
* Copyright: (When this is determined...it will go here)
* CVS Info
- * $Id: trace.c,v 1.34 2003/06/14 17:48:31 dan Exp $
+ * $Id: trace.c,v 1.35 2003/07/01 18:22:01 dan Exp $
* Overview:
* Tracing support for runops_cores.c.
* Data Structure and Algorithms:
@@ -246,7 +246,7 @@
}
/* Flush *stderr* now that we've output the trace info */
- PIO_flush(interpreter, PIO_STDERR(interpreter));
+ PIO_flush(interpreter, new_io_pmc(interpreter, PIO_STDERR(interpreter)));
}