Re: [PATCH] confdefs: Fix uniprocessor configuration

2018-07-30 Thread Sebastian Huber
On 30/07/18 07:39, Sebastian Huber wrote: -#ifndef CONFIGURE_MAXIMUM_PROCESSORS - #define CONFIGURE_MAXIMUM_PROCESSORS 1 +/* Ensure that _CONFIGURE_MAXIMUM_PROCESSORS > 1 only in SMP configurations */ +#if !defined(CONFIGURE_MAXIMUM_PROCESSORS) && defined(RTEMS_SMP) + #define

[PATCH] confdefs: Fix uniprocessor configuration

2018-07-29 Thread Sebastian Huber
Introduce a new internal define _CONFIGURE_MAXIMUM_PROCESSORS and ensure that it is _CONFIGURE_MAXIMUM_PROCESSORS > 1 only in SMP configurations. This avoids to allocate data structures for non-existing additional processors in uniprocessor configuration. Update #3459. --- cpukit/include/rt

Re: Uniprocessor configuration.

2015-08-12 Thread Gedare Bloom
The uniprocessor is used by default. So the way you ran RTEMS for your Getting Started will do. On Tue, Aug 11, 2015 at 9:39 PM, Saurabh Gadia ga...@usc.edu wrote: Hi, how should I make sure that testcases I am implementing are running under uniprocessor configuration? What do we have to do

Uniprocessor configuration.

2015-08-11 Thread Saurabh Gadia
Hi, how should I make sure that testcases I am implementing are running under uniprocessor configuration? What do we have to do to run rtems for uniprocessor architecture? Thanks, Saurabh Gadia ___ devel mailing list devel@rtems.org http