source: rtems/cpukit/score/src/schedulerpriorityenqueue.c @ 5472ad41

4.115
Last change on this file since 5472ad41 was dacdda30, checked in by Ralf Corsepius <ralf.corsepius@…>, on 05/24/11 at 02:44:58

Remove white-spaces.

  • Property mode set to 100644
File size: 568 bytes
Line 
1/*
2 *  COPYRIGHT (c) 2011.
3 *  On-Line Applications Research Corporation (OAR).
4 *
5 *  The license and distribution terms for this file may be
6 *  found in the file LICENSE in this distribution or at
7 *  http://www.rtems.com/license/LICENSE.
8 *
9 *  $Id$
10 */
11
12#if HAVE_CONFIG_H
13#include "config.h"
14#endif
15
16#include <rtems/system.h>
17#include <rtems/config.h>
18#include <rtems/score/scheduler.h>
19#include <rtems/score/schedulerpriority.h>
20
21void _Scheduler_priority_Enqueue(
22  Thread_Control      *the_thread
23)
24{
25   _Scheduler_priority_Ready_queue_enqueue( the_thread );
26}
Note: See TracBrowser for help on using the repository browser.