preconcurrency on libc imports

This commit is contained in:
George Barnett 2025-03-28 12:48:00 +00:00
parent 29995c1a40
commit 5aa9b76e85
2 changed files with 6 additions and 6 deletions

View File

@ -16,11 +16,11 @@ import NIOCore
#if canImport(Darwin)
import Darwin
#elseif canImport(Musl)
import Musl
@preconcurrency import Musl
#elseif canImport(Android)
import Android
@preconcurrency import Android
#else
import Glibc
@preconcurrency import Glibc
#endif
/// `ChannelInboundHandler` that prints all inbound events that pass through the pipeline by default,

View File

@ -17,11 +17,11 @@ import NIOCore
#if canImport(Darwin)
import Darwin
#elseif canImport(Musl)
import Musl
@preconcurrency import Musl
#elseif canImport(Android)
import Android
@preconcurrency import Android
#else
import Glibc
@preconcurrency import Glibc
#endif
/// ChannelOutboundHandler that prints all outbound events that pass through the pipeline by default,