forked from len0rd/rockbox
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@22529 a1c6a512-1295-4272-9138-f99709370657
12 lines
345 B
C
12 lines
345 B
C
#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
|