Go to the source code of this file.
◆ CLIENT_FAILURE
| #define CLIENT_FAILURE |
( |
| msg | ) |
|
Value: { \
ERRORLOG("Could not connect to JACK server (" msg ")"); \
if ( m_pClient != nullptr ) { \
ERRORLOG("...but JACK returned a non-null pointer?"); \
m_pClient = nullptr; \
} \
if (nTries)
ERRORLOG(
"...trying again."); \
}
Definition at line 661 of file JackAudioDriver.cpp.
◆ CLIENT_SUCCESS
| #define CLIENT_SUCCESS |
( |
| msg | ) |
|
Value: { \
assert(m_pClient); \
INFOLOG(msg); \
nTries = 0; \
}
Definition at line 671 of file JackAudioDriver.cpp.