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
Replaces the usage of CAtomics with the native
Atomics from the swift library and bumps the development platform
to macOS 15
Removes all references to CAtomics from the library
Removes atomic wrappers infavor of using them directly
Replacing the usage of Int32, and UInt32 with Int since the previous was only used because of c bridging
Uses .sequentiallyConsistent for all loading and storing methods
Copy file name to clipboardExpand all lines: Contributor Documentation/Modules.md
-4
Original file line number
Diff line number
Diff line change
@@ -10,10 +10,6 @@ Swift types to represent the [Build Server Protocol (BSP) specification](https:/
10
10
11
11
Defines the queries SourceKit-LSP can ask of a build system, like getting compiler arguments for a file, finding a target’s dependencies or preparing a target.
12
12
13
-
### CAtomics
14
-
15
-
Implementation of atomics for Swift using C. Once we can raise our deployment target to use the `Atomic` type from the Swift standard library, this module should be removed.
16
-
17
13
### CSKTestSupport
18
14
19
15
For testing, overrides `__cxa_atexit` to prevent registration of static destructors due to work around https://github.com/swiftlang/swift/issues/55112.
0 commit comments