Re: [PATCH v2] eventdev: drop custom OS defines

2023-10-04 Thread Jerin Jacob
On Wed, Oct 4, 2023 at 10:05 PM Bruce Richardson wrote: > > The eventdev library doesn't need to put in place its own defines for > Linux and BSD. There are already defines for the OS environment in > rte_config.h that can be re-used, but since these are just for > identifying Linux/non-Linux, we

[PATCH v2] eventdev: drop custom OS defines

2023-10-04 Thread Bruce Richardson
The eventdev library doesn't need to put in place its own defines for Linux and BSD. There are already defines for the OS environment in rte_config.h that can be re-used, but since these are just for identifying Linux/non-Linux, we can just check for the standard define '__linux__' instead. Signed