public inbox for cygwin-cvs@sourceware.org
help / color / mirror / Atom feed
* [newlib-cygwin] Cygwin: drop useless method fhandler_base::has_ongoing_io
@ 2021-09-15 12:18 Corinna Vinschen
  0 siblings, 0 replies; only message in thread
From: Corinna Vinschen @ 2021-09-15 12:18 UTC (permalink / raw)
  To: cygwin-cvs

https://sourceware.org/git/gitweb.cgi?p=newlib-cygwin.git;h=f961a63ed670788074c688c0cdaab3b5146b6b61

commit f961a63ed670788074c688c0cdaab3b5146b6b61
Author: Corinna Vinschen <corinna@vinschen.de>
Date:   Wed Sep 15 13:58:36 2021 +0200

    Cygwin: drop useless method fhandler_base::has_ongoing_io
    
    This was a remnant of the fhandler_base_overlapped class.
    
    Signed-off-by: Corinna Vinschen <corinna@vinschen.de>

Diff:
---
 winsup/cygwin/fhandler.h | 1 -
 winsup/cygwin/select.cc  | 3 ---
 2 files changed, 4 deletions(-)

diff --git a/winsup/cygwin/fhandler.h b/winsup/cygwin/fhandler.h
index 9580a698c..919655012 100644
--- a/winsup/cygwin/fhandler.h
+++ b/winsup/cygwin/fhandler.h
@@ -491,7 +491,6 @@ public:
   bool issymlink () {return pc.issymlink ();}
   bool __reg2 device_access_denied (int);
   int __reg3 fhaccess (int flags, bool);
-  virtual bool __reg1 has_ongoing_io ()  {return false;}
 
   fhandler_base (void *) {}
 
diff --git a/winsup/cygwin/select.cc b/winsup/cygwin/select.cc
index fd2312298..a09d8a34d 100644
--- a/winsup/cygwin/select.cc
+++ b/winsup/cygwin/select.cc
@@ -591,9 +591,6 @@ pipe_data_available (int fd, fhandler_base *fh, HANDLE h, bool writing)
   FILE_PIPE_LOCAL_INFORMATION fpli = {0};
   NTSTATUS status;
 
-  if (fh->has_ongoing_io ())
-    return 0;
-
   status = NtQueryInformationFile (h, &iosb, &fpli, sizeof (fpli),
 				   FilePipeLocalInformation);
   if (!NT_SUCCESS (status))


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2021-09-15 12:18 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-09-15 12:18 [newlib-cygwin] Cygwin: drop useless method fhandler_base::has_ongoing_io Corinna Vinschen

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).