Re: [PATCH] eal: fix missing type in dtor macro expansion

2024-05-16 Thread Thomas Monjalon
16/04/2024 20:16, Morten Brørup: > > From: Tyler Retzlaff [mailto:roret...@linux.microsoft.com] > > Sent: Tuesday, 16 April 2024 18.33 > > > > RTE_FINI expansion failed to specify void * type for storage of > > destructor function pointer resulting it defaulting to type ``int``. > > > > Update th

RE: [PATCH] eal: fix missing type in dtor macro expansion

2024-04-16 Thread Morten Brørup
> From: Tyler Retzlaff [mailto:roret...@linux.microsoft.com] > Sent: Tuesday, 16 April 2024 18.33 > > RTE_FINI expansion failed to specify void * type for storage of > destructor function pointer resulting it defaulting to type ``int``. > > Update the macro to specify ``void *`` as the type so th

[PATCH] eal: fix missing type in dtor macro expansion

2024-04-16 Thread Tyler Retzlaff
RTE_FINI expansion failed to specify void * type for storage of destructor function pointer resulting it defaulting to type ``int``. Update the macro to specify ``void *`` as the type so the correct size is allocated in the segment. Fixes: 64eff943ca82 ("eal: implement constructors for MSVC") Cc: