[svn:parrot] r39079 - trunk/src/io

NotFound at svn.parrot.org NotFound at svn.parrot.org
Sat May 23 11:19:13 UTC 2009


Author: NotFound
Date: Sat May 23 11:19:13 2009
New Revision: 39079
URL: https://trac.parrot.org/parrot/changeset/39079

Log:
[pio] call Parrot_io_open_pipe_win32 from Parrot_io_open_win32 (just a first step towards TT #661 in win32)

Modified:
   trunk/src/io/win32.c

Modified: trunk/src/io/win32.c
==============================================================================
--- trunk/src/io/win32.c	Sat May 23 11:12:17 2009	(r39078)
+++ trunk/src/io/win32.c	Sat May 23 11:19:13 2009	(r39079)
@@ -214,6 +214,9 @@
         fprintf(stderr, "Parrot_io_open_win32: %s\n", spath);
     }
 #  endif
+    if (flags & PIO_F_PIPE)
+        return Parrot_io_open_pipe_win32(interp, filehandle, path, flags);
+
     if ((flags & (PIO_F_WRITE | PIO_F_READ)) == 0)
         return NULL;
 


More information about the parrot-commits mailing list