got it. Maxim.
On 03/01/17 18:56, Marco Varlese wrote: > Fix build failure on operating systems where CPU_SETSIZE is bigger than > 1024 entries. > > Signed-off-by: Marco Varlese <[email protected]> > --- > platform/linux-generic/include/odp/api/plat/cpumask_types.h | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/platform/linux-generic/include/odp/api/plat/cpumask_types.h > b/platform/linux-generic/include/odp/api/plat/cpumask_types.h > index c2727a4..1855a03 100644 > --- a/platform/linux-generic/include/odp/api/plat/cpumask_types.h > +++ b/platform/linux-generic/include/odp/api/plat/cpumask_types.h > @@ -25,7 +25,7 @@ extern "C" { > #include <odp/api/std_types.h> > #include <odp/api/align.h> > > -#define ODP_CPUMASK_SIZE 1024 > +#define ODP_CPUMASK_SIZE 4096 > > #define ODP_CPUMASK_STR_SIZE ((ODP_CPUMASK_SIZE + 3) / 4 + 3) > >
