mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-16 19:56:31 +01:00
Rename blocking process function in portaudio backend
This commit is contained in:
parent
3e6b28daca
commit
29feb914b9
2 changed files with 3 additions and 3 deletions
|
|
@ -436,7 +436,7 @@ PortAudioBackend::midi_option () const
|
|||
static void * blocking_thread_func (void *arg)
|
||||
{
|
||||
PortAudioBackend *d = static_cast<PortAudioBackend *>(arg);
|
||||
d->main_blocking_process_thread ();
|
||||
d->blocking_process_thread ();
|
||||
pthread_exit (0);
|
||||
return 0;
|
||||
}
|
||||
|
|
@ -1678,7 +1678,7 @@ PortAudioBackend::get_buffer (PortEngine::PortHandle port, pframes_t nframes)
|
|||
|
||||
|
||||
void *
|
||||
PortAudioBackend::main_blocking_process_thread ()
|
||||
PortAudioBackend::blocking_process_thread ()
|
||||
{
|
||||
AudioEngine::thread_init_callback (this);
|
||||
_active = true;
|
||||
|
|
|
|||
|
|
@ -318,7 +318,7 @@ class PortAudioBackend : public AudioBackend {
|
|||
|
||||
void* get_buffer (PortHandle, pframes_t);
|
||||
|
||||
void* main_blocking_process_thread ();
|
||||
void* blocking_process_thread ();
|
||||
|
||||
void* freewheel_process_thread ();
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue