|
|
@@ -5,6 +5,8 @@
|
|
|
* NOTE: 主要用于状态通知
|
|
|
* HISTORY:
|
|
|
* 1, [2010-12-17] created by NiuJiuRu
|
|
|
+ * 2, [2025-11-24] 优化修改"sw_signal_wait()"函数, 避免依赖系统时间, 导致的
|
|
|
+ * 超时误差或跳变问题
|
|
|
***********************************************************************/
|
|
|
#include "swapi.h"
|
|
|
#include "swmem.h"
|
|
|
@@ -37,8 +39,6 @@ void sw_signal_destroy(void *hSignal)
|
|
|
int sw_signal_wait(void *hSignal, int timeout)
|
|
|
{
|
|
|
sem_t *sem = (sem_t *)hSignal;
|
|
|
- struct timeval tv = { 0 };
|
|
|
- struct timespec ts = { 0 };
|
|
|
int ret;
|
|
|
|
|
|
if(timeout < 0)
|
|
|
@@ -50,15 +50,33 @@ wait_p1:
|
|
|
}
|
|
|
else
|
|
|
{
|
|
|
- gettimeofday(&tv, NULL);
|
|
|
- ts.tv_sec = tv.tv_sec + timeout/1000;
|
|
|
- ts.tv_nsec = tv.tv_usec*1000 + (timeout%1000)*1000*1000;
|
|
|
- ts.tv_sec += ts.tv_nsec/(1000*1000*1000);
|
|
|
- ts.tv_nsec %= (1000*1000*1000);
|
|
|
+#if (__GLIBC__ > 2) || (__GLIBC__ == 2 && __GLIBC_MINOR__ >= 30)
|
|
|
+ struct timespec ts, now;
|
|
|
+ clock_gettime(CLOCK_MONOTONIC/*单调时钟, 不受系统时间影响*/, &now);
|
|
|
+ ts.tv_sec = now.tv_sec + timeout/1000;
|
|
|
+ ts.tv_nsec = now.tv_nsec + (timeout%1000)*1000*1000;
|
|
|
+ if(ts.tv_nsec >= (1000*1000*1000))
|
|
|
+ {
|
|
|
+ ts.tv_sec += ts.tv_nsec/(1000*1000*1000);
|
|
|
+ ts.tv_nsec %= (1000*1000*1000);
|
|
|
+ }
|
|
|
wait_p2:
|
|
|
- ret = sem_timedwait(sem, &ts);
|
|
|
+ ret = sem_clockwait(sem, CLOCK_MONOTONIC, &ts); // 非POSIX标准, GNU扩展, 需定义:"_GNU_SOURCE"支持
|
|
|
+ // , 同时glic库版本需大于等于2.30
|
|
|
if(ret < 0 && errno == EINTR) goto wait_p2;
|
|
|
else return ret;
|
|
|
+#else
|
|
|
+ struct timespec start, now; struct timespec ts = { 0, 1000*1000 };
|
|
|
+ clock_gettime(CLOCK_MONOTONIC, &start);
|
|
|
+ while((ret = sem_trywait(sem)) < 0 && errno == EAGAIN)
|
|
|
+ {
|
|
|
+ clock_gettime(CLOCK_MONOTONIC, &now);
|
|
|
+ long elapsed = (now.tv_sec - start.tv_sec)*1000 + (now.tv_nsec-start.tv_nsec)/(1000*1000);
|
|
|
+ if(elapsed >= timeout) { errno = ETIMEDOUT; return -1; }
|
|
|
+ nanosleep(&ts, NULL);
|
|
|
+ }
|
|
|
+ return ret;
|
|
|
+#endif
|
|
|
}
|
|
|
}
|
|
|
|