summaryrefslogtreecommitdiff
path: root/apps/plugins/pdbox/TLSF-2.4.4/src/target.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/pdbox/TLSF-2.4.4/src/target.h')
-rw-r--r--apps/plugins/pdbox/TLSF-2.4.4/src/target.h12
1 files changed, 0 insertions, 12 deletions
diff --git a/apps/plugins/pdbox/TLSF-2.4.4/src/target.h b/apps/plugins/pdbox/TLSF-2.4.4/src/target.h
deleted file mode 100644
index 1afd62a..0000000
--- a/apps/plugins/pdbox/TLSF-2.4.4/src/target.h
+++ /dev/null
@@ -1,12 +0,0 @@
-#ifndef _TARGET_H_
-#define _TARGET_H_
-
-#include <pthread.h>
-
-#define TLSF_MLOCK_T pthread_mutex_t
-#define TLSF_CREATE_LOCK(l) pthread_mutex_init (l, NULL)
-#define TLSF_DESTROY_LOCK(l) pthread_mutex_destroy(l)
-#define TLSF_ACQUIRE_LOCK(l) pthread_mutex_lock(l)
-#define TLSF_RELEASE_LOCK(l) pthread_mutex_unlock(l)
-
-#endif