aboutsummaryrefslogtreecommitdiff
path: root/src/utils.h
diff options
context:
space:
mode:
authorThomas Jansen <mithi@mithi.net>2008-12-28 21:01:03 +0100
committerThomas Jansen <mithi@mithi.net>2008-12-28 21:01:03 +0100
commitf31b4f46e17f2af17b4d6549d16e8f111b21688d (patch)
tree3d9a90341832af7eecb991eafdc22a6782c35004 /src/utils.h
parent1914e114664e119434d080440622615e5d18b2a8 (diff)
Remove xpthread_* wrappers
Diffstat (limited to 'src/utils.h')
-rw-r--r--src/utils.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/utils.h b/src/utils.h
index 9701b9d4..2142df7f 100644
--- a/src/utils.h
+++ b/src/utils.h
@@ -24,7 +24,6 @@
#include <stdlib.h>
#include <stdio.h>
#include <errno.h>
-#include <pthread.h>
#define ARRAY_SIZE(x) (sizeof(x)/sizeof(x[0]))
@@ -98,14 +97,6 @@ int set_nonblocking(int fd);
void init_async_pipe(int file_des[2]);
-void xpthread_mutex_init(pthread_mutex_t *m, const pthread_mutexattr_t *a);
-
-void xpthread_cond_init(pthread_cond_t *c, pthread_condattr_t *a);
-
-void xpthread_mutex_destroy(pthread_mutex_t *mutex);
-
-void xpthread_cond_destroy(pthread_cond_t *cond);
-
int stringFoundInStringArray(const char *const*array, const char *suffix);
#endif