mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-10-29 08:46:24 -04:00
Don't know why svn decided to delete tlsf/src... Maybe due to some aborted tests I did to see where it would be best to place TLSF.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@22529 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
3fad1523c7
commit
0dad8d5ae9
3 changed files with 1059 additions and 0 deletions
12
apps/codecs/lib/tlsf/src/target.h
Normal file
12
apps/codecs/lib/tlsf/src/target.h
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
#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
|
||||
Loading…
Add table
Add a link
Reference in a new issue