Skip to content
This repository was archived by the owner on Jan 23, 2023. It is now read-only.

Commit 64c04e2

Browse files
t-jekorsafern
authored andcommitted
Enable CLR Thread Pool via a MSBuild flag (default enabled on Unix)
This PR completes, adds tests for, and enables the CLR Thread Pool on Unix. It also adds Windows implementations for the low level primitives used in the CLR Thread Pool. The thread pool is enabled by setting the MSBuild property FeaturePortableThreadPool to true, which is the default on Unix. Supersedes #4039. Rebased and squashed replacement for original PR #4124. Signed-off-by: dotnet-bot <dotnet-bot@microsoft.com> Signed-off-by: dotnet-bot-corefx-mirror <dotnet-bot@microsoft.com>
1 parent be089bc commit 64c04e2

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/Common/src/CoreLib/Interop/Windows/Interop.Errors.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,5 +40,6 @@ internal partial class Errors
4040
internal const int ERROR_NOT_FOUND = 0x490;
4141
internal const int ERROR_BAD_IMPERSONATION_LEVEL = 0x542;
4242
internal const int E_FILENOTFOUND = unchecked((int)0x80070002);
43+
internal const int ERROR_TIMEOUT = 0x000005B4;
4344
}
4445
}

0 commit comments

Comments
 (0)