summaryrefslogtreecommitdiffstats
path: root/cpukit/score/src/threadsetpriority.c
blob: d6b831997095679791c3619aa3dea63efd3db9dc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
/**
 *  @file
 *
 *  @brief Set Thread Priority
 *  @ingroup ScoreThread
 */

/*
 *  COPYRIGHT (c) 1989-2011.
 *  On-Line Applications Research Corporation (OAR).
 *
 *  The license and distribution terms for this file may be
 *  found in the file LICENSE in this distribution or at
 *  http://www.rtems.org/license/LICENSE.
 */

#if HAVE_CONFIG_H
#include "config.h"
#endif

#include <rtems/score/threadimpl.h>

static bool _Thread_Set_priority_filter(
  Thread_Control   *the_thread,
  Priority_Control *new_priority_ptr,
  void             *arg
)
{
  Priority_Control  current_priority;
  Priority_Control  new_priority;
  Priority_Control *old_priority_ptr;

  current_priority = _Thread_Get_priority( the_thread );
  new_priority = *new_priority_ptr;

  old_priority_ptr = arg;
  *old_priority_ptr = current_priority;

  the_thread->real_priority = new_priority;

  return _Thread_Priority_less_than( current_priority, new_priority )
    || !_Thread_Owns_resources( the_thread );
}

void _Thread_Set_priority(
  Thread_Control   *the_thread,
  Priority_Control  new_priority,
  Priority_Control *old_priority,
  bool              prepend_it
)
{
  _Thread_Change_priority(
    the_thread,
    new_priority,
    old_priority,
    _Thread_Set_priority_filter,
    prepend_it
  );
}