Changes between Version 9 and Version 10 of IOTasklist
- Timestamp:
- 04/07/09 19:51:31 (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
IOTasklist
v9 v10 10 10 * Remove src/io/io_mmap.c, unused and not useful. 11 11 12 * Change src/io/io_string.c to a subclass of FileHandle PMC, that provides the same interface, but to a string instead of a file handle.13 14 = PMCs: =15 16 * Create a PMC named "Socket", as a core socket object, which can be subclassed by various HLLs.17 18 = src/io/io.c: =19 20 * Split into two files src/io/file.c and src/io/network.c. (Since the implementation is completely changing, better to create new files with the new function names, rather than changing the names of existing files.)21 12 22 13 = include/parrot/io.h: = … … 66 57 * Remove src/io/io_passdown.c and src/io/io_layers.c, purely implementation artifacts of I/O layers implementation. 67 58 59 * Change src/io/io_string.c to a subclass of FileHandle PMC, that provides the same interface, but to a string instead of a file handle. 60 61 62