source: rtems/cpukit/score/src/schedulerpriorityyield.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: 1.1 KB
Line 
1/**
2 *  @file
3 *
4 *  @brief Scheduler Priority Yield
5 *  @ingroup RTEMSScoreScheduler
6 */
7
8/*
9 *  Copyright (C) 2010 Gedare Bloom.
10 *  Copyright (C) 2011 On-Line Applications Research Corporation (OAR).
11 *
12 *  The license and distribution terms for this file may be
13 *  found in the file LICENSE in this distribution or at
14 *  http://www.rtems.org/license/LICENSE.
15 */
16
17#if HAVE_CONFIG_H
18#include "config.h"
19#endif
20
21#include <rtems/score/schedulerpriorityimpl.h>
22#include <rtems/score/threadimpl.h>
23
24void _Scheduler_priority_Yield(
25  const Scheduler_Control *scheduler,
26  Thread_Control          *the_thread,
27  Scheduler_Node          *node
28)
29{
30  Scheduler_priority_Node *the_node;
31  Chain_Control           *ready_chain;
32
33  the_node = _Scheduler_priority_Node_downcast( node );
34  ready_chain = the_node->Ready_queue.ready_chain;
35
36  if ( !_Chain_Has_only_one_node( ready_chain ) ) {
37    _Chain_Extract_unprotected( &the_thread->Object.Node );
38    _Chain_Append_unprotected( ready_chain, &the_thread->Object.Node );
39  }
40
41  _Scheduler_priority_Schedule_body( scheduler, the_thread, true );
42}
Note: See TracBrowser for help on using the repository browser.