From c2e12f72c75795ab459450980ee0e5c3149cb92b Mon Sep 17 00:00:00 2001 From: Manoj Ampalam Date: Mon, 19 Dec 2016 09:45:41 -0800 Subject: [PATCH] Updated Win32 OpenSSH RoadMap (markdown) --- Win32-OpenSSH-RoadMap.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Win32-OpenSSH-RoadMap.md b/Win32-OpenSSH-RoadMap.md index 7864ccd..786e2cf 100644 --- a/Win32-OpenSSH-RoadMap.md +++ b/Win32-OpenSSH-RoadMap.md @@ -1,4 +1,4 @@ -_This is a living document_ +_This is now obsolete. Please check [Project Status](https://github.com/PowerShell/Win32-OpenSSH/wiki/Project-Status)_ #### Reliability (March) - Status - done The current implementation of the POSIX IO wrapper ("select" and "fd" IO) for Windows has some limitations. Specifically, since it spawns numerous threads (one for each set fd in fd_sets passed to select), it does not scale. The overhead of synchronization between these threads impacts performance and reliability. We are currently working on replacing this with one that takes advantage of the native asynchronous IO support available in Windows (Overlapped IO) - hoping that many of the random IO related issues being reported will be resolved with this change.