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

2023-12-07 Thread Tyler Retzlaff
On Thu, Dec 07, 2023 at 04:18:11PM +, Euan Bourke wrote: > 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

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

2023-12-07 Thread Bruce Richardson
On Thu, Dec 07, 2023 at 04:18:11PM +, Euan Bourke wrote: > 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

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

2023-12-07 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