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

        
  




                              
                                    
                                                                       



                                                           







                         
                                  
 
                                            
 
                                        
 
/**
 * @file
 *
 * @brief Scheduler Initialize
 * @ingroup ScoreScheduler
 */

/*
 *  Copyright (C) 2010 Gedare Bloom.
 *  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.com/license/LICENSE.
 */

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

#include <rtems/system.h>
#include <rtems/config.h>
#include <rtems/score/scheduler.h>

void _Scheduler_Handler_initialization(void)
{
  (*_Scheduler.Operations.initialize)();
}