mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-10-29 05:40:27 -04:00
loop: add method to run a function with the lock
Convert some _invoke to _locked
This commit is contained in:
parent
fb49e0795c
commit
f7fdafc203
18 changed files with 99 additions and 57 deletions
|
|
@ -1131,7 +1131,7 @@ int spa_avb_reassign_follower(struct state *state)
|
|||
if (following != state->following) {
|
||||
spa_log_debug(state->log, "%p: reassign follower %d->%d", state, state->following, following);
|
||||
state->following = following;
|
||||
spa_loop_invoke(state->data_loop, do_reassign_follower, 0, NULL, 0, true, state);
|
||||
spa_loop_locked(state->data_loop, do_reassign_follower, 0, NULL, 0, state);
|
||||
}
|
||||
|
||||
freewheel = state->position &&
|
||||
|
|
@ -1208,7 +1208,7 @@ int spa_avb_pause(struct state *state)
|
|||
|
||||
spa_log_debug(state->log, "%p: pause", state);
|
||||
|
||||
spa_loop_invoke(state->data_loop, do_remove_source, 0, NULL, 0, true, state);
|
||||
spa_loop_locked(state->data_loop, do_remove_source, 0, NULL, 0, state);
|
||||
|
||||
state->started = false;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue