hydrogen 1.2.3
JackAudioDriver.cpp File Reference

Go to the source code of this file.

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:239

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.