summaryrefslogblamecommitdiffstats
path: root/cpukit/score/src/schedulercbscleanup.c
blob: 98218db81f6e45990c7d41e813f9d030255e4cbc (plain) (tree)
1
2
3
4
5
6
7
8
9
   
        
  



                                                         

   





                                                                       
                                         

   
                    


                   






                                                        
                                                      

                                         

                          
/**
 * @file
 *
 * @ingroup RTEMSScoreSchedulerCBS
 *
 * @brief This source file contains the implementation of
 *   _Scheduler_CBS_Cleanup().
 */

/*
 *  Copyright (C) 2011 Petr Benes.
 *  Copyright (C) 2011 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.
 */

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

#include <rtems/score/schedulercbs.h>

int _Scheduler_CBS_Cleanup (void)
{
  unsigned int i;

  for ( i = 0; i<_Scheduler_CBS_Maximum_servers; i++ ) {
    if ( _Scheduler_CBS_Server_list[ i ].initialized )
      _Scheduler_CBS_Destroy_server( i );
  }
  return SCHEDULER_CBS_OK;
}