* fhandler.cc (fhandler_base_overlapped::raw_read): Rename from

read_overlapped.
(fhandler_base_overlapped::raw_e): Rename from write_overlapped.
* fhandler.h (fhandler_*::raw_read): Add reparm decoration.
(fhandler_*::raw_write): Ditto.
(fhandler_base_overlapped::raw_read): Rename from read_overlapped.
(fhandler_base_overlapped::raw_write): Rename from write_overlapped.
(fhandler_pipe::raw_read): Delete.
(fhandler_pipe::raw_write): Ditto.
(fhandler_mailslot::raw_read): Ditto.
* fhandler_fifo.cc (fhandler_fifo::raw_read): Reflect read_overlapped ->
raw_read rename.
(fhandler_fifo::raw_write): Ditto.
* fhandler_mailslot.cc (fhandler_mailslot::raw_read): Delete.
(fhandler_mailslot::raw_write): Reflect read_overlapped -> raw_read rename.
* pipe.cc (fhandler_pipe::raw_read): Delete.
(fhandler_pipe::raw_write): Ditto.
This commit is contained in:
Christopher Faylor
2011-05-05 17:44:42 +00:00
parent b8424c5e9a
commit 8ea8474947
6 changed files with 39 additions and 40 deletions

View File

@@ -171,18 +171,6 @@ fhandler_pipe::get_proc_fd_name (char *buf)
return buf;
}
void
fhandler_pipe::raw_read (void *in_ptr, size_t& in_len)
{
return read_overlapped (in_ptr, in_len);
}
int
fhandler_pipe::raw_write (const void *ptr, size_t len)
{
return write_overlapped (ptr, len);
}
int
fhandler_pipe::dup (fhandler_base *child)
{