hydrogen 1.1.1
JackAudioDriver.cpp File Reference

Namespaces

namespace  H2Core
 

Macros

#define CLIENT_FAILURE(msg)
 
#define CLIENT_SUCCESS(msg)
 

Macro Definition Documentation

◆ 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."); \
}
#define ERRORLOG(x)
Definition: Object.h:154

◆ CLIENT_SUCCESS

#define CLIENT_SUCCESS (   msg)
Value:
{ \
assert(m_pClient); \
INFOLOG(msg); \
nTries = 0; \
}