Running multiple thread instances of the same function. (See MultiThread Program for an example on how to use it)

Dependents:   MutliThread Server_Multi_Client HelloWorld C027_SupportTest ... more

Revision:
3:d370bed31f45
Parent:
2:46b56c9086f2
--- a/Threads.h	Sat Jun 29 22:05:28 2013 +0000
+++ b/Threads.h	Sat Jun 29 22:59:46 2013 +0000
@@ -27,6 +27,6 @@
     struct ThreadList* nextThread;
 }ThreadList;
 
-int initThread(ThreadList **addresOfTL,os_pthread pthread,ThreadList** addresOfThread);
+int initThread(ThreadList **addresOfTL,os_pthread pthread,ThreadList** addresOfThread,int max);
 
 #endif