-
-
Notifications
You must be signed in to change notification settings - Fork 3.1k
std.Io.Threaded: eliminate dependency on std.Thread (Mutex, Condition, maybe more) #25749
Copy link
Copy link
Open
Labels
breakingImplementing this issue could cause existing code to no longer compile or have different behavior.Implementing this issue could cause existing code to no longer compile or have different behavior.enhancementSolving this issue will likely involve adding new logic or components to the codebase.Solving this issue will likely involve adding new logic or components to the codebase.standard libraryThis issue involves writing Zig code for the standard library.This issue involves writing Zig code for the standard library.
Milestone
Metadata
Metadata
Assignees
Labels
breakingImplementing this issue could cause existing code to no longer compile or have different behavior.Implementing this issue could cause existing code to no longer compile or have different behavior.enhancementSolving this issue will likely involve adding new logic or components to the codebase.Solving this issue will likely involve adding new logic or components to the codebase.standard libraryThis issue involves writing Zig code for the standard library.This issue involves writing Zig code for the standard library.
Extracted from #25592.
This implementation should have no dependency on std.Thread. Instead, it should own thread spawning and thread synchronization primitives.
std.Thread should be deleted with all relevant APIs moved to public functions inside
std.Io.Threaded.