Comment out more async code

pull/913/head
Mike Black W9MDB 2021-12-29 22:28:32 -06:00
rodzic a1ea9bf0e3
commit 80188965a1
1 zmienionych plików z 4 dodań i 0 usunięć

Wyświetl plik

@ -6859,6 +6859,7 @@ static int async_data_handler_start(RIG *rig)
ENTERFUNC;
#ifdef ASYNC_BUG
#ifdef HAVE_PTHREAD
if (caps->async_data_supported)
{
@ -6881,11 +6882,13 @@ static int async_data_handler_start(RIG *rig)
RETURNFUNC(-RIG_EINTERNAL);
}
}
#endif
#endif
RETURNFUNC(RIG_OK);
}
#ifdef ASYNC_BUG
static int async_data_handler_stop(RIG *rig)
{
struct rig_state *rs = &rig->state;
@ -6921,6 +6924,7 @@ static int async_data_handler_stop(RIG *rig)
RETURNFUNC(RIG_OK);
}
#endif
#endif
void *async_data_handler(void *arg)
{