xiaoxiang781216 commented on code in PR #16231: URL: https://github.com/apache/nuttx/pull/16231#discussion_r2050349735
########## include/nuttx/wqueue.h: ########## @@ -249,19 +249,11 @@ typedef CODE void (*worker_t)(FAR void *arg); struct work_s { - union - { - struct - { - struct list_node node; /* Implements a double linked list */ - clock_t qtime; /* Time work queued */ - } s; - struct wdog_s timer; /* Delay expiry timer */ - struct wdog_period_s ptimer; /* Period expiry timer */ - } u; + struct list_node node; /* Implements a double linked list */ + clock_t qtime; /* Time work queued */ + clock_t period; /* Periodical delay ticks */ Review Comment: but no change -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@nuttx.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org