Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCorinna Vinschen <corinna@vinschen.de>2009-03-27 18:04:42 +0300
committerCorinna Vinschen <corinna@vinschen.de>2009-03-27 18:04:42 +0300
commit52e26dc2ab6a0c3138c76586385a5dece5dcf8a4 (patch)
tree9064479f315ee22e348201dbb3988618c4f7b2f8 /winsup/cygwin/fhandler_fifo.cc
parentc465a371ea7822e10cb2f4061cb8dc4aab40b023 (diff)
* fhandler.h (class fhandler_fifo): Rename read/write methods to
raw_read/raw_write. * fhandler_fifo.cc: Ditto.
Diffstat (limited to 'winsup/cygwin/fhandler_fifo.cc')
-rw-r--r--winsup/cygwin/fhandler_fifo.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/winsup/cygwin/fhandler_fifo.cc b/winsup/cygwin/fhandler_fifo.cc
index 137e4a7ac..517eceb31 100644
--- a/winsup/cygwin/fhandler_fifo.cc
+++ b/winsup/cygwin/fhandler_fifo.cc
@@ -166,7 +166,7 @@ fhandler_fifo::wait (bool iswrite)
}
void
-fhandler_fifo::read (void *in_ptr, size_t& len)
+fhandler_fifo::raw_read (void *in_ptr, size_t& len)
{
if (!wait (false))
len = 0;
@@ -175,7 +175,7 @@ fhandler_fifo::read (void *in_ptr, size_t& len)
}
int
-fhandler_fifo::write (const void *ptr, size_t len)
+fhandler_fifo::raw_write (const void *ptr, size_t len)
{
return wait (true) ? write_overlapped (ptr, len) : -1;
}