source: rtems/cpukit/score/src/schedulerpriorityextract.c @ a936aa49

4.115
Last change on this file since a936aa49 was 1b475860, checked in by Christopher Kerl <zargyyoyo@…>, on 11/29/12 at 19:39:17

score misc: Score misc: Clean up Doxygen #6 (GCI 2012)

This patch is a task from GCI 2012 which improves the Doxygen
comments in the RTEMS source.

http://www.google-melange.com/gci/task/view/google/gci2012/7976215

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