mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-11-07 13:30:03 -05:00
merge 'lennart' branch back into trunk.
git-svn-id: file:///home/lennart/svn/public/pulseaudio/trunk@1971 fefdeb5f-60dc-0310-8127-8f9354f1896f
This commit is contained in:
parent
6687dd0131
commit
a67c21f093
294 changed files with 79057 additions and 11614 deletions
|
|
@ -24,9 +24,17 @@
|
|||
USA.
|
||||
***/
|
||||
|
||||
#include <pulsecore/macro.h>
|
||||
|
||||
typedef struct pa_mutex pa_mutex;
|
||||
|
||||
pa_mutex* pa_mutex_new(int recursive);
|
||||
/* Please think twice before enabling priority inheritance. This is no
|
||||
* magic wand! Use it only when the potentially priorized threads are
|
||||
* good candidates for it. Don't use this blindly! Also, note that
|
||||
* only very few operating systems actually implement this, hence this
|
||||
* is merely a hint. */
|
||||
pa_mutex* pa_mutex_new(pa_bool_t recursive, pa_bool_t inherit_priority);
|
||||
|
||||
void pa_mutex_free(pa_mutex *m);
|
||||
void pa_mutex_lock(pa_mutex *m);
|
||||
void pa_mutex_unlock(pa_mutex *m);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue