-
Notifications
You must be signed in to change notification settings - Fork 189
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Guard PCM access by a dedicated client mutex
Reusing PCM internal mutex for clients synchronization causes troubles with transport termination - transport thread termination might get stuck on mutex causing deadlock. Internal PCM mutex should not be held for a long period of time. It is used every time the PCM FIFO file descriptor is accessed - which happens a lot in a transport IO thread.
- Loading branch information
Showing
3 changed files
with
72 additions
and
47 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters