Changeset e79093a in rtems
- Timestamp:
- Apr 4, 2011, 4:40:00 PM (10 years ago)
- Branches:
- 4.11, 5, master
- Children:
- 9c24c73
- Parents:
- 54ff312
- Location:
- cpukit
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
cpukit/ChangeLog
r54ff312 re79093a 1 2011-04-04 Joel Sherrill <joel.sherrilL@OARcorp.com> 2 3 PR 1773/cpukit 4 * sapi/include/confdefs.h, sapi/src/exinit.c, 5 score/include/rtems/bspsmp.h, score/src/percpu.c, score/src/thread.c: 6 Rename rtems_smp_maximum_processor to 7 rtems_configuration_smp_maximum_processor. Eliminate printk(). 8 1 9 2011-03-24 Ralf Corsépius <ralf.corsepius@rtems.org> 2 10 -
cpukit/sapi/include/confdefs.h
r54ff312 re79093a 2162 2162 */ 2163 2163 #if defined(CONFIGURE_INIT) 2164 uint32_t rtems_smp_maximum_processors = CONFIGURE_SMP_MAXIMUM_PROCESSORS; 2165 #else 2166 extern uint32_t rtems_smp_maximum_processors; 2164 uint32_t rtems_configuration_smp_maximum_processors = \ 2165 CONFIGURE_SMP_MAXIMUM_PROCESSORS; 2166 #else 2167 extern uint32_t rtems_configuration_smp_maximum_processors; 2167 2168 #endif 2168 2169 /* -
cpukit/sapi/src/exinit.c
r54ff312 re79093a 164 164 */ 165 165 #if defined(RTEMS_SMP) 166 _SMP_Processor_count = bsp_smp_initialize( rtems_smp_maximum_processors ); 166 _SMP_Processor_count = 167 bsp_smp_initialize( rtems_configuration_smp_maximum_processors ); 167 168 #endif 168 169 -
cpukit/score/include/rtems/bspsmp.h
r54ff312 re79093a 88 88 * indicate the Maximum number of CPUs in this system. 89 89 */ 90 extern uint32_t rtems_ smp_maximum_processors;90 extern uint32_t rtems_configuration_smp_maximum_processors; 91 91 92 92 /** -
cpukit/score/src/percpu.c
r54ff312 re79093a 41 41 size = Configuration.interrupt_stack_size; 42 42 _Per_CPU_Information_p[0] = &_Per_CPU_Information[0]; 43 for (cpu=1 ; cpu < rtems_smp_maximum_processors; cpu++ ) { 44 45 printk("Initializing cpu control structure %d\n", cpu ); 43 for (cpu=1 ; cpu < rtems_configuration_smp_maximum_processors; cpu++ ) { 46 44 47 45 Per_CPU_Control *p = &_Per_CPU_Information[cpu]; -
cpukit/score/src/thread.c
r54ff312 re79093a 95 95 */ 96 96 #if defined(RTEMS_SMP) 97 maximum_internal_threads = rtems_ smp_maximum_processors;97 maximum_internal_threads = rtems_configuration_smp_maximum_processors; 98 98 #else 99 99 maximum_internal_threads = 1;
Note: See TracChangeset
for help on using the changeset viewer.