Skip to content

Commit bb91a15

Browse files
committed
Remove blocking_sync usages from TaskProducerContext
These just need simple synchronization; use a mutex instead. This also plugs a couple occurrences of unsynchronized access.
1 parent f267224 commit bb91a15

File tree

2 files changed

+162
-137
lines changed

2 files changed

+162
-137
lines changed

Sources/SWBCore/OnDemandResources.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ public import SWBMacro
1818

1919
public typealias ODRTagSet = Set<String>
2020

21-
public struct ODRAssetPackInfo {
21+
public struct ODRAssetPackInfo: Sendable {
2222
public var identifier: String
2323
public var tags: ODRTagSet
2424
public var path: Path

0 commit comments

Comments
 (0)