Revert "[Concurrency] Add underscore prefixes for not yet official API."

This commit is contained in:
Alastair Houghton
2025-05-20 15:44:26 +01:00
committed by GitHub
parent 3ec3421987
commit 28732f4a8b
32 changed files with 1179 additions and 1179 deletions

View File

@@ -16,10 +16,10 @@ import Swift
// The default executors for now are Dispatch-based
@available(SwiftStdlib 6.2, *)
public struct _PlatformExecutorFactory: _ExecutorFactory {
public static let mainExecutor: any _MainExecutor = _DispatchMainExecutor()
public struct PlatformExecutorFactory: ExecutorFactory {
public static let mainExecutor: any MainExecutor = DispatchMainExecutor()
public static let defaultExecutor: any TaskExecutor
= _DispatchGlobalTaskExecutor()
= DispatchGlobalTaskExecutor()
}
#endif // os(Linux)