On 2/15/2022 10:59 AM, Jeff Hostetler via GitGitGadget wrote: > From: Jeff Hostetler <jeffhost@xxxxxxxxxxxxx> > > Create framework in Win32 version of the "health" thread to > periodically inspect the system and shutdown if warranted. This specific step makes sense to not be included in the previous step. > +/* > + * Every minute wake up and test our health. > + */ > +#define WAIT_FREQ_MS (60 * 1000) > + > +enum interval_fn_ctx { CTX_INIT = 0, CTX_TERM, CTX_TIMER }; Please split out the values into their own lines. Thanks, -Stolee