]> git.ipfire.org Git - people/ms/strongswan.git/commitdiff
Adapted test_pool to the libstrongswan threading.
authorTobias Brunner <tobias@strongswan.org>
Wed, 24 Mar 2010 17:51:52 +0000 (18:51 +0100)
committerTobias Brunner <tobias@strongswan.org>
Wed, 24 Mar 2010 17:51:52 +0000 (18:51 +0100)
src/libcharon/plugins/unit_tester/tests/test_pool.c

index 109c06fda5643e859fe0e32f618f7d8d0f9f0b67..69a9e534f785e5ca6ab2a244d079ebc671e4ab5d 100644 (file)
@@ -14,9 +14,9 @@
  */
 
 #include <time.h>
-#include <pthread.h>
 
 #include <library.h>
+#include <threading/thread.h>
 
 #define ALLOCS 1000
 #define THREADS 20
@@ -69,21 +69,20 @@ static void* testing(void *thread)
  ******************************************************************************/
 bool test_pool()
 {
+       thread_t *threads[THREADS];
        uintptr_t i;
-       void *res;
-       pthread_t thread[THREADS];
 
        for (i = 0; i < THREADS; i++)
        {
-               if (pthread_create(&thread[i], NULL, (void*)testing, (void*)i) < 0)
+               if (!(threads[i] = thread_create((thread_main_t)testing, (void*)i)))
                {
                        return FALSE;
                }
        }
        for (i = 0; i < THREADS; i++)
        {
-               pthread_join(thread[i], &res);
-               if (res == NULL)
+               bool *res = threads[i]->join(threads[i]);
+               if (!res)
                {
                        return FALSE;
                }