sched/signal: Fix compilation errors for MSVC.

This commit removed empty struct to fix compilation errors for the MSVC compiler.

Signed-off-by: ouyangxiangzhen <ouyangxiangzhen@xiaomi.com>
This commit is contained in:
ouyangxiangzhen
2024-09-29 17:23:47 +08:00
committed by Xiang Xiao
parent 39576af753
commit c0ae6525c4
3 changed files with 8 additions and 3 deletions
+2
View File
@@ -63,7 +63,9 @@ struct posix_timer_s
clock_t pt_expected; /* Expected absolute time */
struct wdog_s pt_wdog; /* The watchdog that provides the timing */
struct sigevent pt_event; /* Notification information */
#ifdef CONFIG_SIG_EVTHREAD
struct sigwork_s pt_work;
#endif
};
/****************************************************************************
+5
View File
@@ -72,8 +72,13 @@ static void timer_timeout(wdparm_t itimer);
static inline void timer_signotify(FAR struct posix_timer_s *timer)
{
#ifdef CONFIG_SIG_EVTHREAD
DEBUGVERIFY(nxsig_notification(timer->pt_owner, &timer->pt_event,
SI_TIMER, &timer->pt_work));
#else
DEBUGVERIFY(nxsig_notification(timer->pt_owner, &timer->pt_event,
SI_TIMER, NULL));
#endif
}
/****************************************************************************