modules: fix typo in module-rtkit

Was using the gettid() function directly instead of the _gettid()
wrapper.
This commit is contained in:
Érico Nogueira 2021-07-20 12:01:21 -03:00
parent 41ce309275
commit 9160a127b5

View file

@ -518,7 +518,7 @@ static void *custom_start(void *data)
struct impl *impl = this->impl;
pthread_mutex_lock(&impl->lock);
this->pid = gettid();
this->pid = _gettid();
pthread_cond_broadcast(&impl->cond);
pthread_mutex_unlock(&impl->lock);