summaryrefslogblamecommitdiffstats
path: root/cpukit/score/src/threaditerate.c
blob: 78ccb6756c14ca7c03d261fe73e95d3eb5720d60 (plain) (tree)




























                                                                        

                                       
 
                                                               





                                                               


                                                        

                                 
                                                                        












                                               
/*
 * Copyright (c) 2016 embedded brains GmbH.  All rights reserved.
 *
 *  embedded brains GmbH
 *  Dornierstr. 4
 *  82178 Puchheim
 *  Germany
 *  <rtems@embedded-brains.de>
 *
 * 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>

void _Thread_Iterate(
  Thread_Visitor  visitor,
  void           *arg
)
{
  int api_index;

  for ( api_index = 1 ; api_index <= OBJECTS_APIS_LAST ; ++api_index ) {
    const Objects_Information *information;
    Objects_Maximum            maximum;
    Objects_Maximum            index;

    _Assert( _Objects_Information_table[ api_index ] != NULL );
    information = _Objects_Information_table[ api_index ][ 1 ];

    if ( information == NULL ) {
      continue;
    }

    maximum = _Objects_Get_maximum_index( information );

    for ( index = 0 ; index < maximum ; ++index ) {
      Thread_Control *the_thread;

      the_thread = (Thread_Control *) information->local_table[ index ];

      if ( the_thread != NULL ) {
        bool done;

        done = (* visitor )( the_thread, arg );

        if ( done ) {
          return;
        }
      }
    }
  }
}