summaryrefslogtreecommitdiffstats
path: root/src/pulsecore/thread-posix.c
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2006-09-04 22:04:33 +0000
committerLennart Poettering <lennart@poettering.net>2006-09-04 22:04:33 +0000
commit3be920d9aec656e7e34672558e85ba025a4059d0 (patch)
treecdb8b2b846731718bdbc771c726ee0ee9ceb7555 /src/pulsecore/thread-posix.c
parent813e95f3b88a8345f82a205126d94bbffeda57b9 (diff)
fix pa_thread_is_running() for foreign threads; fix a memory leak for foreign threads
git-svn-id: file:///home/lennart/svn/public/pulseaudio/trunk@1370 fefdeb5f-60dc-0310-8127-8f9354f1896f
Diffstat (limited to 'src/pulsecore/thread-posix.c')
-rw-r--r--src/pulsecore/thread-posix.c26
1 files changed, 25 insertions, 1 deletions
diff --git a/src/pulsecore/thread-posix.c b/src/pulsecore/thread-posix.c
index 43ad2d52..1b9a94a3 100644
--- a/src/pulsecore/thread-posix.c
+++ b/src/pulsecore/thread-posix.c
@@ -26,6 +26,7 @@
#include <assert.h>
#include <pthread.h>
#include <sched.h>
+#include <errno.h>
#include <atomic_ops.h>
@@ -56,8 +57,18 @@ static pthread_once_t thread_tls_once = PTHREAD_ONCE_INIT;
static pa_mutex *once_mutex;
static pthread_once_t thread_once_once = PTHREAD_ONCE_INIT;
+static void tls_free_cb(void *p) {
+ pa_thread *t = p;
+
+ assert(t);
+
+ if (!t->thread_func)
+ /* This is a foreign thread, we need to free the struct */
+ pa_xfree(t);
+}
+
static void thread_tls_once_func(void) {
- thread_tls = pa_tls_new(NULL);
+ thread_tls = pa_tls_new(tls_free_cb);
assert(thread_tls);
}
@@ -80,6 +91,8 @@ static void* internal_thread_func(void *userdata) {
pa_thread* pa_thread_new(pa_thread_func_t thread_func, void *userdata) {
pa_thread *t;
+ assert(thread_func);
+
t = pa_xnew(pa_thread, 1);
t->thread_func = thread_func;
t->userdata = userdata;
@@ -99,6 +112,17 @@ int pa_thread_is_running(pa_thread *t) {
AO_t r;
assert(t);
+ if (!t->thread_func) {
+ /* Mhmm, this is a foreign thread, t->running is not
+ * necessarily valid. We misuse pthread_getschedparam() to
+ * check if the thread is valid. This might not be portable. */
+
+ int policy;
+ struct sched_param param;
+
+ return pthread_getschedparam(t->id, &policy, &param) >= 0 || errno != ESRCH;
+ }
+
r = AO_load_full(&t->running);
return r == 1 || r == 2;
}