source: rtems/cpukit/score/src/schedulerpriorityblock.c @ f7f1d77

4.115
Last change on this file since f7f1d77 was f7f1d77, checked in by Alex Ivanov <alexivanov97@…>, on 11/28/12 at 14:11:31

score misc: Clean up Doxygen (GCI 2012)

This patch is a task from GCI 2012 which improves the Doxygen
comments in the RTEMS source.
https://google-melange.appspot.com/gci/task/view/google/gci2012/7978208

  • Property mode set to 100644
File size: 1.0 KB
Line 
1/**
2 * @file
3 *
4 * @brief Scheduler Priority Block
5 * @ingroup ScoreScheduler
6 */
7
8/*
9 *  Scheduler Handler
10 *
11 *  Copyright (C) 2010 Gedare Bloom.
12 *  Copyright (C) 2011 On-Line Applications Research Corporation (OAR).
13 *
14 *  The license and distribution terms for this file may be
15 *  found in the file LICENSE in this distribution or at
16 *  http://www.rtems.com/license/LICENSE.
17 */
18
19#if HAVE_CONFIG_H
20#include "config.h"
21#endif
22
23#include <rtems/system.h>
24#include <rtems/score/context.h>
25#include <rtems/score/interr.h>
26#include <rtems/score/isr.h>
27#include <rtems/score/object.h>
28#include <rtems/score/priority.h>
29#include <rtems/score/scheduler.h>
30#include <rtems/score/schedulerpriority.h>
31#include <rtems/score/thread.h>
32
33void _Scheduler_priority_Block(
34  Thread_Control   *the_thread
35)
36{
37  _Scheduler_priority_Ready_queue_extract( the_thread );
38
39  /* TODO: flash critical section? */
40
41  if ( _Thread_Is_heir( the_thread ) )
42     _Scheduler_priority_Schedule_body();
43
44  if ( _Thread_Is_executing( the_thread ) )
45    _Thread_Dispatch_necessary = true;
46
47}
Note: See TracBrowser for help on using the repository browser.