Fixed binary search: no more infinite loops when vendor is unknown.
[tangerine.git] / workbench / libs / thread / mmakefile.src
blobd8e0b1769dfe6915e3ea6d22aaee434ac42cd42e
1 include $(TOP)/config/make.cfg
3 FILES := thread_init
5 FUNCS := \
6         createthread \
7         waitthread \
8         waitallthreads \
9         detachthread \
10         currentthread \
11         createmutex \
12         destroymutex \
13         lockmutex \
14         trylockmutex \
15         unlockmutex \
16         createcondition \
17         destroycondition \
18         waitcondition \
19         signalcondition \
20         broadcastcondition \
21         exitthread
23 #MM workbench-libs-thread-includes : \
24 #MM    kernel-exec-includes \
25 #MM    includes-copy
26 #MM- workbench-libs-thread : linklibs
28 %build_module mmake=workbench-libs-thread \
29     modname=thread modtype=library \
30     files="$(FILES) $(FUNCS)" \
31     uselibs="rom"
33 %common