Skip to content

Commit 1694919

Browse files
Fix compilation failure introduced by swift_job_run migration
1 parent 8801f77 commit 1694919

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

stdlib/public/Concurrency/GlobalExecutor.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ void swift::donateThreadToGlobalExecutorUntil(bool (*condition)(void *),
105105
while (!condition(conditionContext)) {
106106
auto job = claimNextFromJobQueue();
107107
if (!job) return;
108-
job->run(ExecutorRef::generic());
108+
swift_job_run(job, ExecutorRef::generic());
109109
}
110110
}
111111

0 commit comments

Comments
 (0)