source: rtems/cpukit/score/src/iterateoverthreads.c @ 4e97166

4.104.114.84.95
Last change on this file since 4e97166 was a8eed23, checked in by Ralf Corsepius <ralf.corsepius@…>, on 01/27/05 at 05:57:05

Include config.h.

  • Property mode set to 100644
File size: 1.2 KB
Line 
1/*
2 *  rtems_iterate_over_all_threads
3 *
4 *  This function operates by as follows:
5 *    for all threads
6 *         invoke specified function
7 *
8 *  COPYRIGHT (c) 1989-2003.
9 *  On-Line Applications Research Corporation (OAR).
10 *
11 *  The license and distribution terms for this file may be
12 *  found in the file LICENSE in this distribution or at
13 *  http://www.rtems.com/license/LICENSE.
14 *
15 *  $Id$
16 */
17
18#if HAVE_CONFIG_H
19#include "config.h"
20#endif
21
22#include <rtems/system.h>
23#include <rtems/score/thread.h>
24
25void rtems_iterate_over_all_threads(rtems_per_thread_routine routine)
26{
27  uint32_t             i;
28  uint32_t             api_index;
29  Thread_Control      *the_thread;
30  Objects_Information *information;
31
32  for ( api_index = 1 ;
33        api_index <= OBJECTS_APIS_LAST ;
34        api_index++ ) {
35    if ( !_Objects_Information_table[ api_index ] )
36      continue;
37    information = _Objects_Information_table[ api_index ][ 1 ];
38    if ( information ) {
39      for ( i=1 ; i <= information->maximum ; i++ ) {
40        the_thread = (Thread_Control *)information->local_table[ i ];
41
42        if ( !the_thread )
43          continue;
44
45        (*routine)(the_thread);
46      }
47    }
48  }
49
50}
Note: See TracBrowser for help on using the repository browser.