summaryrefslogtreecommitdiffstats
path: root/cpukit/score/src/iterateoverthreads.c
blob: e829fc9edbf297be8264f3b708fa35b5fc7c478b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
/**
 *  @file
 *
 *  @brief Iterates Over All Threads
 *  @ingroup ScoreThread
 */

/*
 *  COPYRIGHT (c) 1989-2010.
 *  On-Line Applications Research Corporation (OAR).
 *
 *  The license and distribution terms for this file may be
 *  found in the file LICENSE in this distribution or at
 *  http://www.rtems.org/license/LICENSE.
 */

#if HAVE_CONFIG_H
#include "config.h"
#endif

#include <rtems/score/threadimpl.h>

typedef struct {
  rtems_per_thread_routine routine;
} routine_arg;

static bool routine_adaptor( rtems_tcb *tcb, void *arg )
{
  routine_arg *ra;

  ra = arg;
  ( *ra->routine )( tcb );
  return false;
}

void rtems_iterate_over_all_threads( rtems_per_thread_routine routine )
{
  routine_arg arg = {
    .routine = routine
  };

  if ( routine != NULL ) {
    _Thread_Iterate( routine_adaptor, &arg );
  }
}