source: rtems/cpukit/score/src/threaddispatch.c @ e6b31b27

4.115
Last change on this file since e6b31b27 was e6b31b27, checked in by Joel Sherrill <joel.sherrill@…>, on 05/27/15 at 15:13:58

Remove use ticks for statistics configure option.

This was obsolete and broken based upon recent time keeping changes.

Thie build option was previously enabled by adding
USE_TICKS_FOR_STATISTICS=1 to the configure command line.

This propagated into the code as preprocessor conditionals
using the RTEMS_USE_TICKS_FOR_STATISTICS conditional.

  • Property mode set to 100644
File size: 4.3 KB
Line 
1/**
2 * @file
3 *
4 * @brief Dispatch Thread
5 * @ingroup ScoreThread
6 */
7
8/*
9 *  COPYRIGHT (c) 1989-2009.
10 *  On-Line Applications Research Corporation (OAR).
11 *
12 *  Copyright (c) 2014 embedded brains GmbH.
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/threaddispatch.h>
24#include <rtems/score/apiext.h>
25#include <rtems/score/assert.h>
26#include <rtems/score/isr.h>
27#include <rtems/score/threadimpl.h>
28#include <rtems/score/todimpl.h>
29#include <rtems/score/userextimpl.h>
30#include <rtems/score/wkspace.h>
31#include <rtems/config.h>
32
33static Thread_Action *_Thread_Get_post_switch_action(
34  Thread_Control *executing
35)
36{
37  Chain_Control *chain = &executing->Post_switch_actions.Chain;
38
39  return (Thread_Action *) _Chain_Get_unprotected( chain );
40}
41
42static void _Thread_Run_post_switch_actions( Thread_Control *executing )
43{
44  ISR_Level        level;
45  Per_CPU_Control *cpu_self;
46  Thread_Action   *action;
47
48  cpu_self = _Thread_Action_ISR_disable_and_acquire( executing, &level );
49  action = _Thread_Get_post_switch_action( executing );
50
51  while ( action != NULL ) {
52    _Chain_Set_off_chain( &action->Node );
53
54    ( *action->handler )( executing, action, cpu_self, level );
55
56    cpu_self = _Thread_Action_ISR_disable_and_acquire( executing, &level );
57    action = _Thread_Get_post_switch_action( executing );
58  }
59
60  _Thread_Action_release_and_ISR_enable( cpu_self, level );
61}
62
63void _Thread_Do_dispatch( Per_CPU_Control *cpu_self, ISR_Level level )
64{
65  Thread_Control *executing;
66
67  _Assert( cpu_self->thread_dispatch_disable_level == 1 );
68
69  executing = cpu_self->executing;
70
71  do {
72    Thread_Control *heir = _Thread_Get_heir_and_make_it_executing( cpu_self );
73
74    /*
75     *  When the heir and executing are the same, then we are being
76     *  requested to do the post switch dispatching.  This is normally
77     *  done to dispatch signals.
78     */
79    if ( heir == executing )
80      goto post_switch;
81
82    /*
83     *  Since heir and executing are not the same, we need to do a real
84     *  context switch.
85     */
86#if __RTEMS_ADA__
87    executing->rtems_ada_self = rtems_ada_self;
88    rtems_ada_self = heir->rtems_ada_self;
89#endif
90    if ( heir->budget_algorithm == THREAD_CPU_BUDGET_ALGORITHM_RESET_TIMESLICE )
91      heir->cpu_time_budget = rtems_configuration_get_ticks_per_timeslice();
92
93    /*
94     * On SMP the complete context switch must be atomic with respect to one
95     * processor.  See also _Thread_Handler() since _Context_switch() may branch
96     * to this function.
97     */
98#if !defined( RTEMS_SMP )
99    _ISR_Enable( level );
100#endif
101
102    _Thread_Update_cpu_time_used(
103      executing,
104      &cpu_self->time_of_last_context_switch
105    );
106
107#if !defined(__DYNAMIC_REENT__)
108    /*
109     * Switch libc's task specific data.
110     */
111    if ( _Thread_libc_reent ) {
112      executing->libc_reent = *_Thread_libc_reent;
113      *_Thread_libc_reent = heir->libc_reent;
114    }
115#endif
116
117    _User_extensions_Thread_switch( executing, heir );
118    _Thread_Save_fp( executing );
119    _Context_Switch( &executing->Registers, &heir->Registers );
120    _Thread_Restore_fp( executing );
121
122    /*
123     * We have to obtain this value again after the context switch since the
124     * heir thread may have migrated from another processor.  Values from the
125     * stack or non-volatile registers reflect the old execution environment.
126     */
127    cpu_self = _Per_CPU_Get();
128
129    _Thread_Debug_set_real_processor( executing, cpu_self );
130
131#if !defined( RTEMS_SMP )
132    _ISR_Disable( level );
133#endif
134  } while (
135#if defined( RTEMS_SMP )
136    false
137#else
138    cpu_self->dispatch_necessary
139#endif
140  );
141
142post_switch:
143  _Assert( cpu_self->thread_dispatch_disable_level == 1 );
144  cpu_self->thread_dispatch_disable_level = 0;
145  _Profiling_Thread_dispatch_enable( cpu_self, 0 );
146
147  _ISR_Enable_without_giant( level );
148
149  _Thread_Run_post_switch_actions( executing );
150}
151
152void _Thread_Dispatch( void )
153{
154  ISR_Level        level;
155  Per_CPU_Control *cpu_self;
156
157  _ISR_Disable_without_giant( level );
158
159  cpu_self = _Per_CPU_Get();
160
161  if ( cpu_self->dispatch_necessary ) {
162    _Profiling_Thread_dispatch_disable( cpu_self, 0 );
163    cpu_self->thread_dispatch_disable_level = 1;
164    _Thread_Do_dispatch( cpu_self, level );
165  } else {
166    _ISR_Enable_without_giant( level );
167  }
168}
Note: See TracBrowser for help on using the repository browser.