mirror of
https://github.com/TomHarte/CLK.git
synced 2024-11-26 23:52:26 +00:00
Breaks Mac machine shutdown deadlock.
This commit is contained in:
parent
b0ab617393
commit
6aaef97158
@ -16,8 +16,10 @@ struct UpdaterDelegate: public Concurrency::BestEffortUpdater::Delegate {
|
|||||||
|
|
||||||
void update(Concurrency::BestEffortUpdater *updater, int cycles, bool did_skip_previous_update) {
|
void update(Concurrency::BestEffortUpdater *updater, int cycles, bool did_skip_previous_update) {
|
||||||
[delegateLock lock];
|
[delegateLock lock];
|
||||||
[delegate bestEffortUpdater:nil runForCycles:(NSUInteger)cycles didSkipPreviousUpdate:did_skip_previous_update];
|
__weak id<CSBestEffortUpdaterDelegate> delegateCopy = delegate;
|
||||||
[delegateLock unlock];
|
[delegateLock unlock];
|
||||||
|
|
||||||
|
[delegateCopy bestEffortUpdater:nil runForCycles:(NSUInteger)cycles didSkipPreviousUpdate:did_skip_previous_update];
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user