From: Frank Stettner Date: Tue, 6 Mar 2018 15:56:42 +0000 (+0100) Subject: arachnid-labs-re-load-pro: Replace C++-style comments with C-style comments. X-Git-Url: https://sigrok.org/gitaction?a=commitdiff_plain;h=c3f8e1abf04772a359f22ff1609b6a55f6b3ef38;p=libsigrok.git arachnid-labs-re-load-pro: Replace C++-style comments with C-style comments. --- diff --git a/src/hardware/arachnid-labs-re-load-pro/protocol.c b/src/hardware/arachnid-labs-re-load-pro/protocol.c index 38405157..998ba171 100644 --- a/src/hardware/arachnid-labs-re-load-pro/protocol.c +++ b/src/hardware/arachnid-labs-re-load-pro/protocol.c @@ -171,7 +171,7 @@ SR_PRIV int reloadpro_get_current_limit(const struct sr_dev_inst *sdi, end_time = g_get_monotonic_time () + 5 * G_TIME_SPAN_SECOND; if (!g_cond_wait_until(&devc->current_limit_cond, &devc->acquisition_mutex, end_time)) { - // timeout has passed. + /* Timeout has passed. */ g_mutex_unlock(&devc->acquisition_mutex); return SR_ERR; } @@ -207,7 +207,7 @@ SR_PRIV int reloadpro_get_under_voltage_threshold(const struct sr_dev_inst *sdi, end_time = g_get_monotonic_time () + 5 * G_TIME_SPAN_SECOND; if (!g_cond_wait_until(&devc->uvc_threshold_cond, &devc->acquisition_mutex, end_time)) { - // timeout has passed. + /* Timeout has passed. */ g_mutex_unlock(&devc->acquisition_mutex); return SR_ERR; } @@ -244,7 +244,7 @@ SR_PRIV int reloadpro_get_voltage_current(const struct sr_dev_inst *sdi, end_time = g_get_monotonic_time () + 5 * G_TIME_SPAN_SECOND; if (!g_cond_wait_until(&devc->voltage_cond, &devc->acquisition_mutex, end_time)) { - // timeout has passed. + /* Timeout has passed. */ g_mutex_unlock(&devc->acquisition_mutex); return SR_ERR; }