X-Git-Url: http://git.indexdata.com/?p=idzebra-moved-to-github.git;a=blobdiff_plain;f=util%2Ftstflock.c;h=1ac141791c008c9bc6dae237c4c8a5dde074f523;hp=2bea667ababed25ebdd30fd25d00fcdffaba1a9a;hb=aeea139423b8eaf28a4de53b3d7b2ad1f22284e7;hpb=0052fb5520062c328006dc3537f39d28e88f3579 diff --git a/util/tstflock.c b/util/tstflock.c index 2bea667..1ac1417 100644 --- a/util/tstflock.c +++ b/util/tstflock.c @@ -107,7 +107,7 @@ void *run_func(void *arg) if (use_write_lock == 2) /* random lock */ write_lock = (rand() & 3) == 3 ? 1 : 0; - + if (write_lock) { zebra_lock_w(lh); @@ -115,21 +115,21 @@ void *run_func(void *arg) write(test_fd, "L", 1); *seqp++ = 'L'; small_sleep(); - *seqp++ = 'U'; + *seqp++ = 'U'; write(test_fd, "U", 1); - + zebra_unlock(lh); } else { zebra_lock_r(lh); - + write(test_fd, "l", 1); *seqp++ = 'l'; small_sleep(); *seqp++ = 'u'; write(test_fd, "u", 1); - + zebra_unlock(lh); } } @@ -190,7 +190,7 @@ static void tst_thread(int num, int write_flag) for (i = 0; i < num; i++) YAZ_CHECK(id[i] == 123); *seqp++ = '\0'; - yaz_log(YLOG_LOG, "tst_thread(%d,%d) returns seq=%s", + yaz_log(YLOG_LOG, "tst_thread(%d,%d) returns seq=%s", num, write_flag, seq); }