mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-04 04:39:33 +01:00
Set thread-names (libs)
This commit is contained in:
parent
d6a38d5450
commit
c365c6cdb2
16 changed files with 33 additions and 3 deletions
|
|
@ -64,6 +64,7 @@ AlsaMidiIO::~AlsaMidiIO ()
|
|||
static void * pthread_process (void *arg)
|
||||
{
|
||||
AlsaMidiIO *d = static_cast<AlsaMidiIO *>(arg);
|
||||
pthread_set_name ("AlsaMidiIO");
|
||||
d->main_process_thread ();
|
||||
pthread_exit (0);
|
||||
return 0;
|
||||
|
|
|
|||
|
|
@ -143,6 +143,7 @@ void*
|
|||
AlsaAudioSlave::_process_thread (void* arg)
|
||||
{
|
||||
AlsaAudioSlave* aas = static_cast<AlsaAudioSlave*> (arg);
|
||||
pthread_set_name ("AlsaAudioSlave");
|
||||
return aas->process_thread ();
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -504,6 +504,7 @@ CoreAudioBackend::launch_control_app ()
|
|||
static void * pthread_freewheel (void *arg)
|
||||
{
|
||||
CoreAudioBackend *d = static_cast<CoreAudioBackend *>(arg);
|
||||
pthread_set_name ("CAFreewheel");
|
||||
d->freewheel_thread ();
|
||||
pthread_exit (0);
|
||||
return 0;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue