Author: allison
Date: Thu Dec 25 13:09:53 2008
New Revision: 34358
Modified:
branches/pdd22io_part3/MANIFEST
branches/pdd22io_part3/config/gen/makefiles/root.in
branches/pdd22io_part3/src/io/filehandle.c
Log:
[pdd22io] Supporting changes after moving FileHandle PMC utility functions.
Modified: branches/pdd22io_part3/MANIFEST
==============================================================================
--- branches/pdd22io_part3/MANIFEST (original)
+++ branches/pdd22io_part3/MANIFEST Thu Dec 25 13:09:53 2008
@@ -2954,10 +2954,10 @@
src/interp_guts.h []
src/interpreter.c []
src/intlist.c []
-src/io.c []
src/io/api.c []
src/io/buffer.c []
src/io/core.c []
+src/io/filehandle.c []
src/io/io_private.h []
src/io/io_string.c []
src/io/portable.c []
Modified: branches/pdd22io_part3/config/gen/makefiles/root.in
==============================================================================
--- branches/pdd22io_part3/config/gen/makefiles/root.in (original)
+++ branches/pdd22io_part3/config/gen/makefiles/root.in Thu Dec 25 13:09:53 2008
@@ -360,7 +360,7 @@
$(IO_DIR)/unix$(O) \
$(IO_DIR)/win32$(O) \
$(IO_DIR)/portable$(O) \
- $(SRC_DIR)/io$(O)
+ $(IO_DIR)/filehandle$(O)
INTERP_O_FILES = \
$(SRC_DIR)/string$(O) \
@@ -1205,7 +1205,7 @@
$(SRC_DIR)/pbc_merge$(O) : $(SRC_DIR)/pbc_merge.c $(GENERAL_H_FILES)
-$(SRC_DIR)/io$(O) : $(SRC_DIR)/pmc/pmc_filehandle.h $(SRC_DIR)/io/io_private.h
+$(IO_DIR)/filehandle$(O) : $(SRC_DIR)/pmc/pmc_filehandle.h $(SRC_DIR)/io/io_private.h
$(OPS_DIR)/core_ops$(O) : $(GENERAL_H_FILES) $(OPS_DIR)/core_ops.c
Modified: branches/pdd22io_part3/src/io/filehandle.c
==============================================================================
--- branches/pdd22io_part3/src/io/filehandle.c (original)
+++ branches/pdd22io_part3/src/io/filehandle.c Thu Dec 25 13:09:53 2008
@@ -4,11 +4,11 @@
=head1 NAME
-src/io.c - Common I/O utility functions
+src/io/filehandle.c - FileHandle utility functions
=head1 DESCRIPTION
-This file defines a set of utility functions for I/O operations used by all
+This file defines a set of utility functions for the FileHandle PMC used by all
operating systems. For the primary public I/O API, see F<src/io/api.c>.
=cut
@@ -16,8 +16,8 @@
*/
#include "parrot/parrot.h"
-#include "io/io_private.h"
-#include "pmc/pmc_filehandle.h"
+#include "io_private.h"
+#include "../pmc/pmc_filehandle.h"
/* HEADERIZER HFILE: include/parrot/io.h */