* fhandler.h (class fhandler_fifo): Rename read/write methods to

raw_read/raw_write.
	* fhandler_fifo.cc: Ditto.
This commit is contained in:
Corinna Vinschen
2009-03-27 15:04:42 +00:00
parent c465a371ea
commit 52e26dc2ab
3 changed files with 10 additions and 4 deletions

View File

@@ -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;
}