void (*sp_debug_handler)(const char *format, ...) = sp_default_debug_handler;
+static void get_time(struct timeval *time);
+
static enum sp_return get_config(struct sp_port *port, struct port_data *data,
struct sp_port_config *config);
static enum sp_return set_config(struct sp_port *port, struct port_data *data,
const struct sp_port_config *config);
+static void get_time(struct timeval *time)
+{
+ gettimeofday(time, NULL);
+}
+
SP_API enum sp_return sp_get_port_by_name(const char *portname, struct sp_port **port_ptr)
{
struct sp_port *port;
if (timeout_ms) {
/* Get time at start of operation. */
- gettimeofday(&start, NULL);
+ get_time(&start);
/* Define duration of timeout. */
delta.tv_sec = timeout_ms / 1000;
delta.tv_usec = (timeout_ms % 1000) * 1000;
* select() is even run.
*/
if (timeout_ms && started) {
- gettimeofday(&now, NULL);
+ get_time(&now);
if (timercmp(&now, &end, >))
/* Timeout has expired. */
break;
if (timeout_ms) {
/* Get time at start of operation. */
- gettimeofday(&start, NULL);
+ get_time(&start);
/* Define duration of timeout. */
delta.tv_sec = timeout_ms / 1000;
delta.tv_usec = (timeout_ms % 1000) * 1000;
* select() is even run.
*/
if (timeout_ms && started) {
- gettimeofday(&now, NULL);
+ get_time(&now);
if (timercmp(&now, &end, >))
/* Timeout has expired. */
break;
if (timeout_ms) {
/* Get time at start of operation. */
- gettimeofday(&start, NULL);
+ get_time(&start);
/* Define duration of timeout. */
delta.tv_sec = timeout_ms / 1000;
delta.tv_usec = (timeout_ms % 1000) * 1000;
* select() is even run.
*/
if (timeout_ms && started) {
- gettimeofday(&now, NULL);
+ get_time(&now);
if (timercmp(&now, &end, >))
/* Timeout has expired. */
break;
if (timeout_ms) {
/* Get time at start of operation. */
- gettimeofday(&start, NULL);
+ get_time(&start);
/* Define duration of timeout. */
delta.tv_sec = timeout_ms / 1000;
delta.tv_usec = (timeout_ms % 1000) * 1000;
timeout_overflow = (timeout_ms > INT_MAX);
timeout_remaining_ms = timeout_overflow ? INT_MAX : timeout_ms;
} else {
- gettimeofday(&now, NULL);
+ get_time(&now);
if (timercmp(&now, &end, >)) {
DEBUG("Wait timed out");
break;