engines/rados: fix build issue with thread_cond_t vs pthread_cond_t
authorVincent Fu <vincent.fu@wdc.com>
Thu, 14 May 2020 16:54:11 +0000 (12:54 -0400)
committerVincent Fu <vincent.fu@wdc.com>
Thu, 14 May 2020 16:54:11 +0000 (12:54 -0400)
commit95625c6d5ad7a4428ebbf55230016136054c7e44
tree285db3ae3fe4618a3cbee615fe1f3c527c72f302
parentf4f7096f7ce0f4e2c188ff90f12244d62e56b2bf
engines/rados: fix build issue with thread_cond_t vs pthread_cond_t

The Travis-CI Linux build fails because the type for completed_more_io
was changed from pthread_cond_t to thread_cond_t:

https://travis-ci.org/github/axboe/fio/jobs/687073515

Change it back to pthread_cond_t.

Fixes: 1e30d8d005a568169c0749f5fc6fb2d5f09dcc97 ("engines/rados: Added
waiting for completion on cleanup.")
Signed-off-by: Vincent Fu <vincent.fu@wdc.com>
engines/rados.c