summaryrefslogtreecommitdiff
path: root/apps/plugins/pdbox/TLSF-2.4.4/src/target.h
diff options
context:
space:
mode:
authorMagnus Holmgren <magnushol@gmail.com>2009-09-23 18:36:13 +0000
committerMagnus Holmgren <magnushol@gmail.com>2009-09-23 18:36:13 +0000
commitb11a7fde080b9cee4c92cb8980c597fbf6c32b56 (patch)
tree8da1c43b77696f3e2f2d1743b3662449c2ff1196 /apps/plugins/pdbox/TLSF-2.4.4/src/target.h
parent073e2062da89d31c73b7fdb40b0fc1dabc89bd17 (diff)
downloadrockbox-b11a7fde080b9cee4c92cb8980c597fbf6c32b56.tar.gz
rockbox-b11a7fde080b9cee4c92cb8980c597fbf6c32b56.zip
Make PDBox use the copy of TLSF in the codecs folder (and remove the old copy).
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@22802 a1c6a512-1295-4272-9138-f99709370657
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 1afd62aef2..0000000000
--- a/apps/plugins/pdbox/TLSF-2.4.4/src/target.h
+++ /dev/null
@@ -1,12 +0,0 @@
1#ifndef _TARGET_H_
2#define _TARGET_H_
3
4#include <pthread.h>
5
6#define TLSF_MLOCK_T pthread_mutex_t
7#define TLSF_CREATE_LOCK(l) pthread_mutex_init (l, NULL)
8#define TLSF_DESTROY_LOCK(l) pthread_mutex_destroy(l)
9#define TLSF_ACQUIRE_LOCK(l) pthread_mutex_lock(l)
10#define TLSF_RELEASE_LOCK(l) pthread_mutex_unlock(l)
11
12#endif