source: rtems/cpukit/score/src/schedulerpriorityblock.c @ 8a8b95aa

5
Last change on this file since 8a8b95aa was 4c20da4b, checked in by Sebastian Huber <sebastian.huber@…>, on 04/04/19 at 07:18:11

doxygen: Rename Score* groups in RTEMSScore*

Update #3706

  • Property mode set to 100644
File size: 783 bytes
Line 
1/**
2 * @file
3 *
4 * @brief Scheduler Priority Block
5 * @ingroup RTEMSScoreScheduler
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.org/license/LICENSE.
17 */
18
19#if HAVE_CONFIG_H
20#include "config.h"
21#endif
22
23#include <rtems/score/schedulerpriorityimpl.h>
24
25void _Scheduler_priority_Block(
26  const Scheduler_Control *scheduler,
27  Thread_Control          *the_thread,
28  Scheduler_Node          *node
29)
30{
31  _Scheduler_Generic_block(
32    scheduler,
33    the_thread,
34    node,
35    _Scheduler_priority_Extract_body,
36    _Scheduler_priority_Schedule_body
37  );
38}
Note: See TracBrowser for help on using the repository browser.