summaryrefslogblamecommitdiffstats
path: root/cpukit/score/src/schedulersimpleenqueue.c
blob: 2a04e9cc1af4946d895638101a941c06d175a4f7 (plain) (tree)


























                                                           
                                                      
 
/*
 *  Schedule Simple Handler / Enqueue
 *
 *  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.
 *
 *  $Id$
 */

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

#include <rtems/system.h>
#include <rtems/score/chain.h>
#include <rtems/score/isr.h>
#include <rtems/score/thread.h>
#include <rtems/score/schedulersimple.h>

void _Scheduler_simple_Enqueue(
  Thread_Control            *the_thread
)
{
  _Scheduler_simple_Ready_queue_enqueue( the_thread );
}