mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
74 lines
1.7 KiB
Swift
74 lines
1.7 KiB
Swift
// RUN: %target-run-simple-swift(-Xfrontend -enable-experimental-concurrency -enable-actor-data-race-checks %import-libdispatch -parse-as-library) > %t.log 2>&1
|
|
// RUN: %FileCheck %s < %t.log
|
|
|
|
// REQUIRES: executable_test
|
|
// REQUIRES: concurrency
|
|
// REQUIRES: libdispatch
|
|
|
|
// rdar://76038845
|
|
// UNSUPPORTED: use_os_stdlib
|
|
// UNSUPPORTED: back_deployment_runtime
|
|
|
|
import _Concurrency
|
|
import Dispatch
|
|
|
|
// For sleep
|
|
#if canImport(Darwin)
|
|
import Darwin
|
|
#elseif canImport(Glibc)
|
|
import Glibc
|
|
#endif
|
|
|
|
@MainActor func onMainActor() {
|
|
print("I'm on the main actor!")
|
|
}
|
|
|
|
func promiseMainThread(_ fn: @escaping @MainActor () -> Void) -> (() -> Void) {
|
|
typealias Fn = () -> Void
|
|
return unsafeBitCast(fn, to: Fn.self)
|
|
}
|
|
|
|
func launchTask(_ fn: @escaping () -> Void) {
|
|
if #available(macOS 10.10, iOS 8.0, watchOS 2.0, tvOS 8.0, *) {
|
|
DispatchQueue.global().async {
|
|
fn()
|
|
}
|
|
}
|
|
}
|
|
|
|
func launchFromMainThread() {
|
|
launchTask(promiseMainThread(onMainActor))
|
|
}
|
|
|
|
actor MyActor {
|
|
var counter = 0
|
|
|
|
func onMyActor() {
|
|
counter = counter + 1
|
|
}
|
|
|
|
func getTaskOnMyActor() -> (() -> Void) {
|
|
return {
|
|
self.onMyActor()
|
|
}
|
|
}
|
|
}
|
|
|
|
@main
|
|
struct Runner {
|
|
static func main() async {
|
|
print("Launching a main-actor task")
|
|
// CHECK: warning: data race detected: @MainActor function at main/data_race_detection.swift:22 was not called on the main thread
|
|
launchFromMainThread()
|
|
sleep(1)
|
|
|
|
let actor = MyActor()
|
|
let actorFn = await actor.getTaskOnMyActor()
|
|
print("Launching an actor-instance task")
|
|
// CHECK: warning: data race detected: actor-isolated function at main/data_race_detection.swift:51 was not called on the same actor
|
|
launchTask(actorFn)
|
|
|
|
sleep(1)
|
|
}
|
|
}
|