Re: [PATCH v4 1/8] arg_parser: new library for command line parsing

2024-01-24 Thread Bruce Richardson
On Wed, Jan 24, 2024 at 02:16:13PM +0100, Morten Brørup wrote: > > From: Euan Bourke [mailto:euan.bou...@intel.com] > > Sent: Friday, 15 December 2023 18.26 > > > > Add a new library to make it easier for eal and other libraries to > > parse > > command line arguments. > > > > The first function

RE: [PATCH v4 1/8] arg_parser: new library for command line parsing

2024-01-24 Thread Morten Brørup
> From: Euan Bourke [mailto:euan.bou...@intel.com] > Sent: Friday, 15 December 2023 18.26 > > Add a new library to make it easier for eal and other libraries to > parse > command line arguments. > > The first function in this library is one to parse a corelist string > into an array of individual

[PATCH v4 1/8] arg_parser: new library for command line parsing

2023-12-15 Thread Euan Bourke
Add a new library to make it easier for eal and other libraries to parse command line arguments. The first function in this library is one to parse a corelist string into an array of individual core ids. The function will then return the total number of cores described in the corelist. Signed-off