#include "RtAudio.h"
#include <vector>
#include <stdio.h>
Go to the source code of this file.
Defines | |
#define | MUTEX_INITIALIZE(A) pthread_mutex_init(A, NULL) |
#define | MUTEX_LOCK(A) pthread_mutex_lock(A) |
#define | MUTEX_UNLOCK(A) pthread_mutex_unlock(A) |
Typedefs | |
typedef void * | THREAD_RETURN |
Functions | |
THREAD_RETURN THREAD_TYPE | callbackHandler (void *ptr) |
Variables | |
struct { | |
RtAudio * object | |
int streamId | |
} | thread_info |
#define MUTEX_INITIALIZE | ( | A | ) | pthread_mutex_init(A, NULL) |
Definition at line 31 of file RtAudio.cpp.
#define MUTEX_LOCK | ( | A | ) | pthread_mutex_lock(A) |
Definition at line 32 of file RtAudio.cpp.
#define MUTEX_UNLOCK | ( | A | ) | pthread_mutex_unlock(A) |
Definition at line 33 of file RtAudio.cpp.
typedef void* THREAD_RETURN |
Definition at line 34 of file RtAudio.cpp.
THREAD_RETURN THREAD_TYPE callbackHandler | ( | void * | ptr | ) |
Referenced by RtAudio::setStreamCallback().
Definition at line 257 of file RtAudio.cpp.
Definition at line 258 of file RtAudio.cpp.
struct { ... } thread_info |
Referenced by RtAudio::setStreamCallback().