summaryrefslogtreecommitdiffstats
path: root/winsup/cygwin/dtable.cc
diff options
context:
space:
mode:
Diffstat (limited to 'winsup/cygwin/dtable.cc')
-rw-r--r--winsup/cygwin/dtable.cc18
1 files changed, 0 insertions, 18 deletions
diff --git a/winsup/cygwin/dtable.cc b/winsup/cygwin/dtable.cc
index c40b5e6ae..f130a2ef7 100644
--- a/winsup/cygwin/dtable.cc
+++ b/winsup/cygwin/dtable.cc
@@ -580,24 +580,6 @@ done:
return res;
}
-fhandler_fifo *
-dtable::find_fifo (const char *path)
-{
- lock ();
- fhandler_fifo *fh_res = NULL;
- for (unsigned i = 0; i < size; i++)
- {
- fhandler_base *fh = fds[i];
- if (fh && fh->isfifo () && strcmp (path, fh->get_win32_name ()) == 0)
- {
- fh_res = (fhandler_fifo *) fh;
- break;
- }
- }
- unlock ();
- return fh_res;
-}
-
select_record *
dtable::select_read (int fd, select_record *s)
{