Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix compile errors for Swift 6 language mode #317

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

b1ackturtle
Copy link

This PR fixes code that caused compile errors when enabling the Swift 6 language mode.

@@ -20,12 +20,12 @@ import Glibc
#endif

#if canImport(Darwin)
func start_thread(_ raw: UnsafeMutableRawPointer) -> UnsafeMutableRawPointer? {
@Sendable func start_thread(_ raw: UnsafeMutableRawPointer) -> UnsafeMutableRawPointer? {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Adding @Sendable to functions isn't the right fix often. Where did the original error come from?

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This @Sendable is intended to address the compilation error that occurs in TaskDriver's pthread_create(&thread, nil, start_thread, Unmanaged.passRetained(self).toOpaque()) when the Swift 6 language mode is enabled.
The compilation error that occurs is as follows:

A C function pointer can only be formed from a reference to a 'func' or a literal closure

After reconsidering based on your comments, I realized that defining start_thread within start can also suppress the compilation error.
I have tried fixing it with ea58d5d.

@@ -412,3 +412,32 @@ extension AsyncSequenceValidationDiagram {
try self.test(theme: .ascii, build)
}
}

final class LockIsolated<Value>: @unchecked Sendable {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We do have this type already called ManagedCriticalState

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I did not realize that ManagedCriticalState was already defined. I have fixed it to use ManagedCriticalState.



static var driver: TaskDriver?
static let clock = LockIsolated<Clock?>(nil)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Having multiple separate locks here to protect the state is problematic since there might be invariants that aren't enforced this way. I would rather put all the state behind one lock

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I have modified it to protect all states with a single lock.

@b1ackturtle b1ackturtle force-pushed the fix-swift6-compile-errors branch from 8469d80 to ea58d5d Compare June 19, 2024 07:40
@FranzBusch
Copy link
Member

@swift-ci please test

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants