Skip to content

Commit b2daf9e

Browse files
author
=
committed
Increase timeout for waiting on sync_worker_task thread during sync_worker_init.
1 parent 4494aa4 commit b2daf9e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

host/libraries/libbladeRF/src/streaming/sync_worker.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,7 @@ int sync_worker_init(struct bladerf_sync *s)
256256

257257
/* Wait until the worker thread has initialized and is ready to go */
258258
status =
259-
sync_worker_wait_for_state(s->worker, SYNC_WORKER_STATE_IDLE, 1000);
259+
sync_worker_wait_for_state(s->worker, SYNC_WORKER_STATE_IDLE, 10000);
260260
if (status != 0) {
261261
log_debug("%s worker: sync_worker_wait_for_state failed: %d\n",
262262
worker2str(s), status);

0 commit comments

Comments
 (0)