mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-11-02 09:01:50 -05:00
private: don't block context related problems, just emit a warning
This commit is contained in:
parent
74831aa967
commit
e0a09ccf31
1 changed files with 3 additions and 3 deletions
|
|
@ -389,11 +389,11 @@ int pw_loop_check(struct pw_loop *loop);
|
||||||
#define ensure_loop(loop,...) ({ \
|
#define ensure_loop(loop,...) ({ \
|
||||||
int res = pw_loop_check(loop); \
|
int res = pw_loop_check(loop); \
|
||||||
if (res != 1) { \
|
if (res != 1) { \
|
||||||
pw_log_error("%s called from wrong context, check locking: %s", \
|
pw_log_warn("%s called from wrong context, check thread and locking: %s", \
|
||||||
__func__, spa_strerror(res)); \
|
__func__, spa_strerror(res)); \
|
||||||
fprintf(stderr, "*** %s called from wrong context, check locking: %s\n",\
|
fprintf(stderr, "*** %s called from wrong context, check thread and locking: %s\n",\
|
||||||
__func__, spa_strerror(res)); \
|
__func__, spa_strerror(res)); \
|
||||||
__VA_ARGS__; \
|
/* __VA_ARGS__ */ \
|
||||||
} \
|
} \
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue