You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
CI: fix pthread_t() init in Thread.swift for FreeBSD
pthread_t is OpaquePointer on FreeBSD (no default initializer). Use
unsafeBitCast(0 as UInt) as a placeholder — _subprocess_pthread_create
takes _Nonnull ptr so the variable must stay non-optional; pthread_create
overwrites it before any read.
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
0 commit comments