Re: [dpdk-dev] [PATCH v2 2/2] timer: support EAL functions on Windows

2020-04-27 Thread Dmitry Kozlyuk
On 2020-04-27 15:20 GMT+0300 Fady Bader wrote: > Implemented the needed Windows eal timer functions. [snip] > +void > +rte_delay_us_sleep(unsigned int us) > +{ > + HANDLE timer; > + LARGE_INTEGER li_due_time; Here usually comes a blank line. > + /* create waitable timer */ > + tim

[dpdk-dev] [PATCH v2 2/2] timer: support EAL functions on Windows

2020-04-27 Thread Fady Bader
Implemented the needed Windows eal timer functions. Signed-off-by: Fady Bader --- lib/librte_eal/common/meson.build | 1 + lib/librte_eal/windows/eal.c| 6 +++ lib/librte_eal/windows/eal_timer.c | 68 + lib/librte_eal/windows/include/rte_o