fix: compile error in lower gcc version
This commit is contained in:
parent
a0090b5cdf
commit
acf6a6e966
|
@ -78,11 +78,6 @@ void taos_block_sigalrm(void) {
|
|||
#include <sys/syscall.h>
|
||||
#include <unistd.h>
|
||||
|
||||
static void taosDeleteTimer(void *tharg) {
|
||||
timer_t *pTimer = tharg;
|
||||
TAOS_SKIP_ERROR(timer_delete(*pTimer));
|
||||
}
|
||||
|
||||
static TdThread timerThread;
|
||||
static timer_t timerId;
|
||||
static volatile bool stopTimer = false;
|
||||
|
@ -114,8 +109,6 @@ static void *taosProcessAlarmSignal(void *tharg) {
|
|||
return NULL;
|
||||
}
|
||||
|
||||
taosThreadCleanupPush(taosDeleteTimer, &timerId);
|
||||
|
||||
do {
|
||||
struct itimerspec ts;
|
||||
ts.it_value.tv_sec = 0;
|
||||
|
@ -141,7 +134,7 @@ static void *taosProcessAlarmSignal(void *tharg) {
|
|||
}
|
||||
} while (0);
|
||||
|
||||
taosThreadCleanupPop(1);
|
||||
timer_delete(timerId);
|
||||
|
||||
return NULL;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue