summaryrefslogtreecommitdiffstats
path: root/src/pulsecore/thread.h
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2006-09-09 22:59:17 +0000
committerLennart Poettering <lennart@poettering.net>2006-09-09 22:59:17 +0000
commit6d532029eaac08a3b60a28752f23f0586f895168 (patch)
tree43e6ebe2c580369d1f28e9cbdc9a2037804edd6a /src/pulsecore/thread.h
parent3426a399ccbaa60c03bf38f9fb788a6f12b888b0 (diff)
update for newer APIs: replace direct usage of libatomic_ops by usage of our own atomic.h; remove pa_once implementation; always use our pa_once implementation instead of the POSIX version
git-svn-id: file:///home/lennart/svn/public/pulseaudio/trunk@1386 fefdeb5f-60dc-0310-8127-8f9354f1896f
Diffstat (limited to 'src/pulsecore/thread.h')
-rw-r--r--src/pulsecore/thread.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/pulsecore/thread.h b/src/pulsecore/thread.h
index e50a707f..d08990a2 100644
--- a/src/pulsecore/thread.h
+++ b/src/pulsecore/thread.h
@@ -24,13 +24,9 @@
#include <pulse/def.h>
-#define PA_THREAD_ONCE_INIT 0
-
typedef struct pa_thread pa_thread;
typedef void (*pa_thread_func_t) (void *userdata);
-typedef void (*pa_thread_once_func_t) (void);
-typedef unsigned int pa_thread_once_t;
pa_thread* pa_thread_new(pa_thread_func_t thread_func, void *userdata);
void pa_thread_free(pa_thread *t);
@@ -38,7 +34,6 @@ int pa_thread_join(pa_thread *t);
int pa_thread_is_running(pa_thread *t);
pa_thread *pa_thread_self(void);
void pa_thread_yield(void);
-void pa_thread_once(pa_thread_once_t *control, pa_thread_once_func_t once_func);
void* pa_thread_get_data(pa_thread *t);
void pa_thread_set_data(pa_thread *t, void *userdata);