summaryrefslogtreecommitdiffstats
path: root/winsup/cygwin/fhandler_tape.cc
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2012-08-15 19:07:42 +0000
committerChristopher Faylor <me@cgf.cx>2012-08-15 19:07:42 +0000
commit806e732c016ba1662c7a4fa0c5270195932b8474 (patch)
tree6ddfb832a31732a730e5dcc62edebdc843fac3d1 /winsup/cygwin/fhandler_tape.cc
parent879f3ad5eefc0cb914e7fed1a219ebb11c995a99 (diff)
downloadcygnal-806e732c016ba1662c7a4fa0c5270195932b8474.tar.gz
cygnal-806e732c016ba1662c7a4fa0c5270195932b8474.tar.bz2
cygnal-806e732c016ba1662c7a4fa0c5270195932b8474.zip
Rename cancelable_wait -> cygwait throughout.
* DevNotes: Add entry cgf-000015. * cygwait.h (cygwait): Don't allow an optional PLARGE_INTERGER argument.
Diffstat (limited to 'winsup/cygwin/fhandler_tape.cc')
-rw-r--r--winsup/cygwin/fhandler_tape.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/cygwin/fhandler_tape.cc b/winsup/cygwin/fhandler_tape.cc
index 855fd5dfd..5d1a7f9e6 100644
--- a/winsup/cygwin/fhandler_tape.cc
+++ b/winsup/cygwin/fhandler_tape.cc
@@ -1150,7 +1150,7 @@ fhandler_dev_tape::_lock (bool cancelable)
/* O_NONBLOCK is only valid in a read or write call. Only those are
cancelable. */
DWORD timeout = cancelable && is_nonblocking () ? 0 : INFINITE;
- switch (cancelable_wait (mt_mtx, timeout, cw_sig | cw_cancel | cw_cancel_self))
+ switch (cygwait (mt_mtx, timeout, cw_sig | cw_cancel | cw_cancel_self))
{
case WAIT_OBJECT_0:
return true;