source: rtems/testsuites/smptests/smp01/init.c @ e049eea

4.115
Last change on this file since e049eea was e049eea, checked in by Joel Sherrill <joel.sherrill@…>, on 06/28/11 at 21:08:48

2011-06-28 Joel Sherrill <joel.sherrill@…>

  • .configure.ac.swp, ChangeLog?, Makefile.am, README, config.h.in, configure.ac, smp01/.cvsignore, smp01/Makefile.am, smp01/init.c, smp01/smp01.doc, smp01/smp01.scn, smp01/system.h, smp01/tasks.c, smp02/.cvsignore, smp02/Makefile.am, smp02/init.c, smp02/smp02.doc, smp02/smp02.scn, smp02/system.h, smp02/tasks.c, smp03/.cvsignore, smp03/Makefile.am, smp03/init.c, smp03/smp03.doc, smp03/smp03.scn, smp03/system.h, smp03/tasks.c, smp04/.cvsignore, smp04/Makefile.am, smp04/init.c, smp04/smp04.doc, smp04/smp04.scn, smp04/system.h, smp04/tasks.c, smp05/.cvsignore, smp05/Makefile.am, smp05/init.c, smp05/smp05.doc, smp05/smp05.scn, smp06/.cvsignore, smp06/Makefile.am, smp06/init.c, smp06/smp06.doc, smp06/smp06.scn, smp07/.cvsignore, smp07/Makefile.am, smp07/init.c, smp07/smp07.doc, smp07/smp07.scn, smp08/.cvsignore, smp08/Makefile.am, smp08/init.c, smp08/smp08.doc, smp08/smp08.scn, smp08/system.h, smp08/tasks.c, smp09/.cvsignore, smp09/Makefile.am, smp09/init.c, smp09/smp09.doc, smp09/smp09.scn: New files.
  • Property mode set to 100644
File size: 1.9 KB
Line 
1/*
2 *  COPYRIGHT (c) 1989-2011.
3 *  On-Line Applications Research Corporation (OAR).
4 *
5 *  The license and distribution terms for this file may be
6 *  found in the file LICENSE in this distribution or at
7 *  http://www.rtems.com/license/LICENSE.
8 *
9 *  $Id$
10 */
11
12#ifdef HAVE_CONFIG_H
13#include "config.h"
14#endif
15
16#define CONFIGURE_INIT
17#include "system.h"
18
19void Loop() {
20  volatile int i;
21
22  for (i=0; i<300000; i++);
23}
24
25rtems_task Init(
26  rtems_task_argument argument
27)
28{
29  int                i;
30  char               ch;
31  int                cpu_num;
32  rtems_id           id;
33  rtems_status_code  status;
34  bool               allDone;
35
36  /* XXX - Delay a bit to allow debug messages from
37   * startup to print.  This may need to go away when
38   * debug messages go away.
39   */
40  Loop();
41  locked_print_initialize();
42
43  /* Put start of test message */
44  locked_printf( "\n\n***  SMP01 TEST ***\n" );
45
46  /* Initialize the TaskRan array */
47  for ( i=0; i<rtems_smp_get_number_of_processors() ; i++ ) {
48    TaskRan[i] = false;
49  }
50
51  /* Create and start tasks for each processor */
52  for ( i=1; i< rtems_smp_get_number_of_processors() ; i++ ) {
53    ch = '0' + i;
54
55    status = rtems_task_create(
56      rtems_build_name( 'T', 'A', ch, ' ' ),
57      1,
58      RTEMS_MINIMUM_STACK_SIZE,
59      RTEMS_DEFAULT_MODES,
60      RTEMS_DEFAULT_ATTRIBUTES,
61      &id
62    );
63    directive_failed( status, "task create" );
64
65    cpu_num = bsp_smp_processor_id();
66    (" CPU %d start task TA%c\n", cpu_num, ch);
67    status = rtems_task_start( id, Test_task, i+1 );
68    directive_failed( status, "task start" );
69
70    Loop();
71  }
72 
73  /* Wait on the all tasks to run */
74  while (1) {
75    allDone = true;
76    for ( i=1; i<rtems_smp_get_number_of_processors() ; i++ ) {
77      if (TaskRan[i] == false)
78        allDone = false;
79    }
80    if (allDone) {
81      Loop();
82      locked_printf( "*** END OF TEST SMP01 ***" );
83      rtems_test_exit( 0 );
84    }
85  }
86
87}
Note: See TracBrowser for help on using the repository browser.