X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=blobdiff_plain;f=test%2Ftest_mutex.c;h=0a7798f5c0923963fef66b427f95451d17ced978;hp=a4483fcc6fac81954d9278577037799de7f8db2c;hb=33d0d214a9219e190e15779b4e4f5e31fd7946be;hpb=1e957275de39799db9449c8d6c2f52359b494799 diff --git a/test/test_mutex.c b/test/test_mutex.c index a4483fc..0a7798f 100644 --- a/test/test_mutex.c +++ b/test/test_mutex.c @@ -1,7 +1,10 @@ /* This file is part of the YAZ toolkit. - * Copyright (C) 1995-2010 Index Data + * Copyright (C) 1995-2013 Index Data * See the file LICENSE for details. */ +#if HAVE_CONFIG_H +#include +#endif #include #include @@ -58,9 +61,9 @@ static void tst_cond(void) { r = yaz_gettimeofday(&abstime); YAZ_CHECK_EQ(r, 0); - + abstime.tv_sec += 1; /* wait 1 second */ - + r = yaz_cond_wait(c, p, &abstime); YAZ_CHECK(r != 0); @@ -88,7 +91,7 @@ static void tst_create_thread(void) YAZ_CHECK(t[0]); t[1] = yaz_thread_create(my_handler, &mydata); YAZ_CHECK(t[1]); - + return_data = 0; yaz_thread_join(&t[0], &return_data); YAZ_CHECK(!t[0]); @@ -98,7 +101,7 @@ static void tst_create_thread(void) yaz_thread_join(&t[1], &return_data); YAZ_CHECK(!t[1]); YAZ_CHECK(return_data == &mydata); - + YAZ_CHECK_EQ(mydata, 44); }