[newlib-cygwin] Cygwin: fhandler_fifo::cleanup_handlers: improve efficiency
Ken Brown
kbrown@sourceware.org
Fri Nov 20 13:33:41 GMT 2020
https://sourceware.org/git/gitweb.cgi?p=newlib-cygwin.git;h=11c5fd6abde05956f909729289883599392c39a2
commit 11c5fd6abde05956f909729289883599392c39a2
Author: Ken Brown <kbrown@cornell.edu>
Date: Thu Nov 19 15:22:56 2020 -0500
Cygwin: fhandler_fifo::cleanup_handlers: improve efficiency
Traverse the fifo_client_handler list from the top down to try to
avoid copying.
Diff:
---
winsup/cygwin/fhandler_fifo.cc | 13 ++++---------
1 file changed, 4 insertions(+), 9 deletions(-)
diff --git a/winsup/cygwin/fhandler_fifo.cc b/winsup/cygwin/fhandler_fifo.cc
index eff05d242..8b67037cb 100644
--- a/winsup/cygwin/fhandler_fifo.cc
+++ b/winsup/cygwin/fhandler_fifo.cc
@@ -395,15 +395,10 @@ fhandler_fifo::delete_client_handler (int i)
void
fhandler_fifo::cleanup_handlers ()
{
- int i = 0;
-
- while (i < nhandlers)
- {
- if (fc_handler[i].get_state () < fc_connected)
- delete_client_handler (i);
- else
- i++;
- }
+ /* Work from the top down to try to avoid copying. */
+ for (int i = nhandlers - 1; i >= 0; --i)
+ if (fc_handler[i].get_state () < fc_connected)
+ delete_client_handler (i);
}
/* Always called with fifo_client_lock in place. */
More information about the Cygwin-cvs
mailing list