From 13cf56896192f5d1d3e87baa640c99587c2b012f Mon Sep 17 00:00:00 2001 From: Con Kolivas Date: Fri, 6 Jul 2012 15:03:31 +1000 Subject: [PATCH] Use nmsleep instead of usleep in bitforce. --- driver-bitforce.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/driver-bitforce.c b/driver-bitforce.c index a13d8623..21569486 100644 --- a/driver-bitforce.c +++ b/driver-bitforce.c @@ -194,7 +194,7 @@ void bitforce_init(struct cgpu_info *bitforce) } if (retries++) - usleep(10000); + nmsleep(10); } while (!strstr(pdevbuf, "BUSY") && (retries * 10 < BITFORCE_TIMEOUT_MS)); if (unlikely(!strstr(pdevbuf, "SHA256"))) { @@ -271,7 +271,7 @@ re_send: BFgets(pdevbuf, sizeof(pdevbuf), fdDev); if (!pdevbuf[0] || !strncasecmp(pdevbuf, "B", 1)) { mutex_unlock(&bitforce->device_mutex); - usleep(WORK_CHECK_INTERVAL_MS * 1000); + nmsleep(WORK_CHECK_INTERVAL_MS); goto re_send; } else if (unlikely(strncasecmp(pdevbuf, "OK", 2))) { mutex_unlock(&bitforce->device_mutex); @@ -354,7 +354,7 @@ static uint64_t bitforce_get_result(struct thr_info *thr, struct work *work) /* if BFL is throttling, no point checking so quickly */ delay_time_ms = (pdevbuf[0] ? BITFORCE_CHECK_INTERVAL_MS : 2 * WORK_CHECK_INTERVAL_MS); - usleep(delay_time_ms * 1000); + nmsleep(delay_time_ms); bitforce->wait_ms += delay_time_ms; }