source: rtems/cpukit/score/include/rtems/score/threadimpl.h @ 5b393fa5

4.115
Last change on this file since 5b393fa5 was 5b393fa5, checked in by Sebastian Huber <sebastian.huber@…>, on 03/01/15 at 12:50:55

score: Add thread acquire

Update #2273.

  • Property mode set to 100644
File size: 25.3 KB
Line 
1/**
2 * @file
3 *
4 * @brief Inlined Routines from the Thread Handler
5 *
6 * This file contains the macro implementation of the inlined
7 * routines from the Thread handler.
8 */
9
10/*
11 *  COPYRIGHT (c) 1989-2008.
12 *  On-Line Applications Research Corporation (OAR).
13 *
14 *  Copyright (c) 2014 embedded brains GmbH.
15 *
16 *  The license and distribution terms for this file may be
17 *  found in the file LICENSE in this distribution or at
18 *  http://www.rtems.org/license/LICENSE.
19 */
20
21#ifndef _RTEMS_SCORE_THREADIMPL_H
22#define _RTEMS_SCORE_THREADIMPL_H
23
24#include <rtems/score/thread.h>
25#include <rtems/score/chainimpl.h>
26#include <rtems/score/interr.h>
27#include <rtems/score/isr.h>
28#include <rtems/score/objectimpl.h>
29#include <rtems/score/resourceimpl.h>
30#include <rtems/score/statesimpl.h>
31#include <rtems/score/sysstate.h>
32#include <rtems/score/todimpl.h>
33#include <rtems/config.h>
34
35#ifdef __cplusplus
36extern "C" {
37#endif
38
39/**
40 * @addtogroup ScoreThread
41 */
42/**@{**/
43
44/**
45 *  The following structure contains the information necessary to manage
46 *  a thread which it is  waiting for a resource.
47 */
48#define THREAD_STATUS_PROXY_BLOCKING 0x1111111
49
50/**
51 *  Self for the GNU Ada Run-Time
52 */
53SCORE_EXTERN void *rtems_ada_self;
54
55/**
56 *  The following defines the information control block used to
57 *  manage this class of objects.
58 */
59SCORE_EXTERN Objects_Information _Thread_Internal_information;
60
61/**
62 *  The following points to the thread whose floating point
63 *  context is currently loaded.
64 */
65#if ( CPU_HARDWARE_FP == TRUE ) || ( CPU_SOFTWARE_FP == TRUE )
66SCORE_EXTERN Thread_Control *_Thread_Allocated_fp;
67#endif
68
69#if !defined(__DYNAMIC_REENT__)
70/**
71 * The C library re-enter-rant global pointer. Some C library implementations
72 * such as newlib have a single global pointer that changed during a context
73 * switch. The pointer points to that global pointer. The Thread control block
74 * holds a pointer to the task specific data.
75 */
76SCORE_EXTERN struct _reent **_Thread_libc_reent;
77#endif
78
79#define THREAD_RBTREE_NODE_TO_THREAD( node ) \
80  RTEMS_CONTAINER_OF( node, Thread_Control, RBNode )
81
82#if defined(RTEMS_SMP)
83#define THREAD_RESOURCE_NODE_TO_THREAD( node ) \
84  RTEMS_CONTAINER_OF( node, Thread_Control, Resource_node )
85#endif
86
87/**
88 *  @brief Initialize thread handler.
89 *
90 *  This routine performs the initialization necessary for this handler.
91 */
92void _Thread_Handler_initialization(void);
93
94/**
95 *  @brief Create idle thread.
96 *
97 *  This routine creates the idle thread.
98 *
99 *  @warning No thread should be created before this one.
100 */
101void _Thread_Create_idle(void);
102
103/**
104 *  @brief Start thread multitasking.
105 *
106 *  This routine initiates multitasking.  It is invoked only as
107 *  part of initialization and its invocation is the last act of
108 *  the non-multitasking part of the system initialization.
109 */
110void _Thread_Start_multitasking( void ) RTEMS_COMPILER_NO_RETURN_ATTRIBUTE;
111
112/**
113 *  @brief Allocate the requested stack space for the thread.
114 *
115 *  Allocate the requested stack space for the thread.
116 *  Set the Start.stack field to the address of the stack.
117 *
118 *  @param[in] the_thread is the thread where the stack space is requested
119 *
120 *  @retval actual size allocated after any adjustment
121 *  @retval zero if the allocation failed
122 */
123size_t _Thread_Stack_Allocate(
124  Thread_Control *the_thread,
125  size_t          stack_size
126);
127
128/**
129 *  @brief Deallocate thread stack.
130 *
131 *  Deallocate the Thread's stack.
132 */
133void _Thread_Stack_Free(
134  Thread_Control *the_thread
135);
136
137/**
138 *  @brief Initialize thread.
139 *
140 *  This routine initializes the specified the thread.  It allocates
141 *  all memory associated with this thread.  It completes by adding
142 *  the thread to the local object table so operations on this
143 *  thread id are allowed.
144 *
145 *  @note If stack_area is NULL, it is allocated from the workspace.
146 *
147 *  @note If the stack is allocated from the workspace, then it is
148 *        guaranteed to be of at least minimum size.
149 */
150bool _Thread_Initialize(
151  Objects_Information                  *information,
152  Thread_Control                       *the_thread,
153  const struct Scheduler_Control       *scheduler,
154  void                                 *stack_area,
155  size_t                                stack_size,
156  bool                                  is_fp,
157  Priority_Control                      priority,
158  bool                                  is_preemptible,
159  Thread_CPU_budget_algorithms          budget_algorithm,
160  Thread_CPU_budget_algorithm_callout   budget_callout,
161  uint32_t                              isr_level,
162  Objects_Name                          name
163);
164
165/**
166 *  @brief Initializes thread and executes it.
167 *
168 *  This routine initializes the executable information for a thread
169 *  and makes it ready to execute.  After this routine executes, the
170 *  thread competes with all other threads for CPU time.
171 *
172 *  @param the_thread is the thread to be initialized
173 *  @param the_prototype
174 *  @param entry_point
175 *  @param pointer_argument
176 *  @param numeric_argument
177 *  @param[in,out] cpu The processor if used to start an idle thread
178 *  during system initialization.  Must be set to @c NULL to start a normal
179 *  thread.
180 */
181bool _Thread_Start(
182  Thread_Control            *the_thread,
183  Thread_Start_types         the_prototype,
184  void                      *entry_point,
185  void                      *pointer_argument,
186  Thread_Entry_numeric_type  numeric_argument,
187  Per_CPU_Control           *cpu
188);
189
190bool _Thread_Restart(
191  Thread_Control            *the_thread,
192  Thread_Control            *executing,
193  void                      *pointer_argument,
194  Thread_Entry_numeric_type  numeric_argument
195);
196
197void _Thread_Yield( Thread_Control *executing );
198
199bool _Thread_Set_life_protection( bool protect );
200
201void _Thread_Life_action_handler(
202  Thread_Control  *executing,
203  Thread_Action   *action,
204  Per_CPU_Control *cpu,
205  ISR_Level        level
206);
207
208/**
209 * @brief Kills all zombie threads in the system.
210 *
211 * Threads change into the zombie state as the last step in the thread
212 * termination sequence right before a context switch to the heir thread is
213 * initiated.  Since the thread stack is still in use during this phase we have
214 * to postpone the thread stack reclamation until this point.  On SMP
215 * configurations we may have to busy wait for context switch completion here.
216 */
217void _Thread_Kill_zombies( void );
218
219/**
220 * @brief Closes the thread.
221 *
222 * Closes the thread object and starts the thread termination sequence.  In
223 * case the executing thread is not terminated, then this function waits until
224 * the terminating thread reached the zombie state.
225 */
226void _Thread_Close( Thread_Control *the_thread, Thread_Control *executing );
227
228/**
229 *  @brief Removes any set states for @a the_thread.
230 *
231 *  This routine removes any set states for @a the_thread.  It performs
232 *  any necessary scheduling operations including the selection of
233 *  a new heir thread.
234 *
235 *  - INTERRUPT LATENCY:
236 *    + ready chain
237 *    + select heir
238 */
239void _Thread_Ready(
240  Thread_Control *the_thread
241);
242
243/**
244 *  @brief Clears the indicated STATES for @a the_thread.
245 *
246 *  This routine clears the indicated STATES for @a the_thread.  It performs
247 *  any necessary scheduling operations including the selection of
248 *  a new heir thread.
249 *
250 *  - INTERRUPT LATENCY:
251 *    + priority map
252 *    + select heir
253 */
254void _Thread_Clear_state(
255  Thread_Control *the_thread,
256  States_Control  state
257);
258
259/**
260 *  @brief Sets the indicated @a state for @a the_thread.
261 *
262 *  This routine sets the indicated @a state for @a the_thread.  It performs
263 *  any necessary scheduling operations including the selection of
264 *  a new heir thread.
265 *
266 *  @param[in] the_thread is the thread to set the state for.
267 *  @param[in] state is the state to set the_thread to.
268 *
269 *  - INTERRUPT LATENCY:
270 *   + ready chain
271 *   + select map
272 */
273void _Thread_Set_state(
274  Thread_Control *the_thread,
275  States_Control  state
276);
277
278/**
279 *  @brief Initializes enviroment for a thread.
280 *
281 *  This routine initializes the context of @a the_thread to its
282 *  appropriate starting state.
283 *
284 *  @param[in] the_thread is the pointer to the thread control block.
285 */
286void _Thread_Load_environment(
287  Thread_Control *the_thread
288);
289
290/**
291 *  @brief Wrapper function for all threads.
292 *
293 *  This routine is the wrapper function for all threads.  It is
294 *  the starting point for all threads.  The user provided thread
295 *  entry point is invoked by this routine.  Operations
296 *  which must be performed immediately before and after the user's
297 *  thread executes are found here.
298 *
299 *  @note On entry, it is assumed all interrupts are blocked and that this
300 *  routine needs to set the initial isr level.  This may or may not
301 *  actually be needed by the context switch routine and as a result
302 *  interrupts may already be at there proper level.  Either way,
303 *  setting the initial isr level properly here is safe.
304 */
305void _Thread_Handler( void );
306
307/**
308 * @brief Executes the global constructors and then restarts itself as the
309 * first initialization thread.
310 *
311 * The first initialization thread is the first RTEMS initialization task or
312 * the first POSIX initialization thread in case no RTEMS initialization tasks
313 * are present.
314 */
315void *_Thread_Global_construction( void );
316
317/**
318 *  @brief Ended the delay of a thread.
319 *
320 *  This routine is invoked when a thread must be unblocked at the
321 *  end of a time based delay (i.e. wake after or wake when).
322 *  It is called by the watchdog handler.
323 *
324 *  @param[in] id is the thread id
325 */
326void _Thread_Delay_ended(
327  Objects_Id  id,
328  void       *ignored
329);
330
331/**
332 *  @brief Change the priority of a thread.
333 *
334 *  This routine changes the current priority of @a the_thread to
335 *  @a new_priority.  It performs any necessary scheduling operations
336 *  including the selection of a new heir thread.
337 *
338 *  @param[in] the_thread is the thread to change
339 *  @param[in] new_priority is the priority to set @a the_thread to
340 *  @param[in] prepend_it is a switch to prepend the thread
341 */
342void _Thread_Change_priority (
343  Thread_Control   *the_thread,
344  Priority_Control  new_priority,
345  bool              prepend_it
346);
347
348/**
349 *  @brief Set thread priority.
350 *
351 *  This routine updates the priority related fields in the_thread
352 *  control block to indicate the current priority is now new_priority.
353 */
354void _Thread_Set_priority(
355  Thread_Control   *the_thread,
356  Priority_Control  new_priority
357);
358
359/**
360 *  This routine updates the related suspend fields in the_thread
361 *  control block to indicate the current nested level.
362 */
363#define _Thread_Suspend( _the_thread ) \
364        _Thread_Set_state( _the_thread, STATES_SUSPENDED )
365
366/**
367 *  This routine updates the related suspend fields in the_thread
368 *  control block to indicate the current nested level.  A force
369 *  parameter of true will force a resume and clear the suspend count.
370 */
371#define _Thread_Resume( _the_thread ) \
372        _Thread_Clear_state( _the_thread, STATES_SUSPENDED )
373
374/**
375 *  @brief Maps thread Id to a TCB pointer.
376 *
377 *  This function maps thread IDs to thread control
378 *  blocks.  If ID corresponds to a local thread, then it
379 *  returns the_thread control pointer which maps to ID
380 *  and @a location is set to OBJECTS_LOCAL.  If the thread ID is
381 *  global and resides on a remote node, then location is set
382 *  to OBJECTS_REMOTE, and the_thread is undefined.
383 *  Otherwise, location is set to OBJECTS_ERROR and
384 *  the_thread is undefined.
385 *
386 *  @param[in] id is the id of the thread.
387 *  @param[in] location is the location of the block.
388 *
389 *  @note  The performance of many RTEMS services depends upon
390 *         the quick execution of the "good object" path in this
391 *         routine.  If there is a possibility of saving a few
392 *         cycles off the execution time, this routine is worth
393 *         further optimization attention.
394 */
395Thread_Control *_Thread_Get (
396  Objects_Id         id,
397  Objects_Locations *location
398);
399
400/**
401 * @brief Acquires a thread by its identifier.
402 *
403 * @see _Objects_Acquire().
404 */
405Thread_Control *_Thread_Acquire(
406  Objects_Id         id,
407  Objects_Locations *location,
408  ISR_lock_Context  *lock_context
409);
410
411/**
412 * @brief Acquires the executing thread.
413 *
414 * @see _Objects_Acquire().
415 */
416Thread_Control *_Thread_Acquire_executing( ISR_lock_Context *lock_context );
417
418/**
419 *  @brief Cancel a blocking operation due to ISR.
420 *
421 *  This method is used to cancel a blocking operation that was
422 *  satisfied from an ISR while the thread executing was in the
423 *  process of blocking.
424 *
425 *  This method will restore the previous ISR disable level during the cancel
426 *  operation.  Thus it is an implicit _ISR_Enable().
427 *
428 *  @param[in] sync_state is the synchronization state
429 *  @param[in] the_thread is the thread whose blocking is canceled
430 *  @param[in] level is the previous ISR disable level
431 *
432 *  @note This is a rare routine in RTEMS.  It is called with
433 *        interrupts disabled and only when an ISR completed
434 *        a blocking condition in process.
435 */
436void _Thread_blocking_operation_Cancel(
437  Thread_blocking_operation_States  sync_state,
438  Thread_Control                   *the_thread,
439  ISR_Level                         level
440);
441
442/**
443 *  @brief Finalize a blocking operation.
444 *
445 *  This method is used to finalize a blocking operation that was
446 *  satisfied. It may be used with thread queues or any other synchronization
447 *  object that uses the blocking states and watchdog times for timeout.
448 *
449 *  This method will restore the previous ISR disable level during the cancel
450 *  operation.  Thus it is an implicit _ISR_Enable().
451 *
452 *  @param[in] the_thread is the thread whose blocking is canceled
453 *  @param[in] level is the previous ISR disable level
454 */
455void _Thread_blocking_operation_Finalize(
456  Thread_Control                   *the_thread,
457  ISR_Level                         level
458);
459
460RTEMS_INLINE_ROUTINE Per_CPU_Control *_Thread_Get_CPU(
461  const Thread_Control *thread
462)
463{
464#if defined(RTEMS_SMP)
465  return thread->Scheduler.cpu;
466#else
467  (void) thread;
468
469  return _Per_CPU_Get();
470#endif
471}
472
473RTEMS_INLINE_ROUTINE void _Thread_Set_CPU(
474  Thread_Control *thread,
475  Per_CPU_Control *cpu
476)
477{
478#if defined(RTEMS_SMP)
479  thread->Scheduler.cpu = cpu;
480#else
481  (void) thread;
482  (void) cpu;
483#endif
484}
485
486/**
487 * This function returns true if the_thread is the currently executing
488 * thread, and false otherwise.
489 */
490
491RTEMS_INLINE_ROUTINE bool _Thread_Is_executing (
492  const Thread_Control *the_thread
493)
494{
495  return ( the_thread == _Thread_Executing );
496}
497
498#if defined(RTEMS_SMP)
499/**
500 * @brief Returns @true in case the thread executes currently on some processor
501 * in the system, otherwise @a false.
502 *
503 * Do not confuse this with _Thread_Is_executing() which checks only the
504 * current processor.
505 */
506RTEMS_INLINE_ROUTINE bool _Thread_Is_executing_on_a_processor(
507  const Thread_Control *the_thread
508)
509{
510  return _CPU_Context_Get_is_executing( &the_thread->Registers );
511}
512#endif
513
514/**
515 * @brief Returns @true and sets time_of_context_switch to the the
516 * time of the last context switch when the thread is currently executing
517 * in the system, otherwise @a false.
518 */
519RTEMS_INLINE_ROUTINE bool _Thread_Get_time_of_last_context_switch(
520  Thread_Control    *the_thread,
521  Timestamp_Control *time_of_context_switch
522)
523{
524  bool retval = false;
525
526  _Thread_Disable_dispatch();
527  #ifndef RTEMS_SMP
528    if ( _Thread_Executing->Object.id == the_thread->Object.id ) {
529      *time_of_context_switch = _Thread_Time_of_last_context_switch;
530      retval = true;
531    }
532  #else
533    if ( _Thread_Is_executing_on_a_processor( the_thread ) ) {
534      *time_of_context_switch =
535        _Thread_Get_CPU( the_thread )->time_of_last_context_switch;
536      retval = true;
537    }
538  #endif
539  _Thread_Enable_dispatch();
540  return retval;
541}
542
543
544/**
545 * This function returns true if the_thread is the heir
546 * thread, and false otherwise.
547 */
548
549RTEMS_INLINE_ROUTINE bool _Thread_Is_heir (
550  const Thread_Control *the_thread
551)
552{
553  return ( the_thread == _Thread_Heir );
554}
555
556/**
557 * This routine clears any blocking state for the_thread.  It performs
558 * any necessary scheduling operations including the selection of
559 * a new heir thread.
560 */
561
562RTEMS_INLINE_ROUTINE void _Thread_Unblock (
563  Thread_Control *the_thread
564)
565{
566  _Thread_Clear_state( the_thread, STATES_BLOCKED );
567}
568
569/**
570 * This routine resets the current context of the calling thread
571 * to that of its initial state.
572 */
573
574RTEMS_INLINE_ROUTINE void _Thread_Restart_self( Thread_Control *executing )
575{
576#if defined(RTEMS_SMP)
577  ISR_Level level;
578
579  _Giant_Release( _Per_CPU_Get() );
580
581  _ISR_Disable_without_giant( level );
582  ( void ) level;
583#endif
584
585#if ( CPU_HARDWARE_FP == TRUE ) || ( CPU_SOFTWARE_FP == TRUE )
586  if ( executing->fp_context != NULL )
587    _Context_Restore_fp( &executing->fp_context );
588#endif
589
590  _CPU_Context_Restart_self( &executing->Registers );
591}
592
593/**
594 * This function returns true if the floating point context of
595 * the_thread is currently loaded in the floating point unit, and
596 * false otherwise.
597 */
598
599#if ( CPU_HARDWARE_FP == TRUE ) || ( CPU_SOFTWARE_FP == TRUE )
600RTEMS_INLINE_ROUTINE bool _Thread_Is_allocated_fp (
601  const Thread_Control *the_thread
602)
603{
604  return ( the_thread == _Thread_Allocated_fp );
605}
606#endif
607
608/*
609 *  If the CPU has hardware floating point, then we must address saving
610 *  and restoring it as part of the context switch.
611 *
612 *  The second conditional compilation section selects the algorithm used
613 *  to context switch between floating point tasks.  The deferred algorithm
614 *  can be significantly better in a system with few floating point tasks
615 *  because it reduces the total number of save and restore FP context
616 *  operations.  However, this algorithm can not be used on all CPUs due
617 *  to unpredictable use of FP registers by some compilers for integer
618 *  operations.
619 */
620
621RTEMS_INLINE_ROUTINE void _Thread_Save_fp( Thread_Control *executing )
622{
623#if ( CPU_HARDWARE_FP == TRUE ) || ( CPU_SOFTWARE_FP == TRUE )
624#if ( CPU_USE_DEFERRED_FP_SWITCH != TRUE )
625  if ( executing->fp_context != NULL )
626    _Context_Save_fp( &executing->fp_context );
627#endif
628#endif
629}
630
631RTEMS_INLINE_ROUTINE void _Thread_Restore_fp( Thread_Control *executing )
632{
633#if ( CPU_HARDWARE_FP == TRUE ) || ( CPU_SOFTWARE_FP == TRUE )
634#if ( CPU_USE_DEFERRED_FP_SWITCH == TRUE )
635  if ( (executing->fp_context != NULL) &&
636       !_Thread_Is_allocated_fp( executing ) ) {
637    if ( _Thread_Allocated_fp != NULL )
638      _Context_Save_fp( &_Thread_Allocated_fp->fp_context );
639    _Context_Restore_fp( &executing->fp_context );
640    _Thread_Allocated_fp = executing;
641  }
642#else
643  if ( executing->fp_context != NULL )
644    _Context_Restore_fp( &executing->fp_context );
645#endif
646#endif
647}
648
649/**
650 * This routine is invoked when the currently loaded floating
651 * point context is now longer associated with an active thread.
652 */
653
654#if ( CPU_HARDWARE_FP == TRUE ) || ( CPU_SOFTWARE_FP == TRUE )
655RTEMS_INLINE_ROUTINE void _Thread_Deallocate_fp( void )
656{
657  _Thread_Allocated_fp = NULL;
658}
659#endif
660
661/**
662 * This function returns true if dispatching is disabled, and false
663 * otherwise.
664 */
665
666RTEMS_INLINE_ROUTINE bool _Thread_Is_context_switch_necessary( void )
667{
668  return ( _Thread_Dispatch_necessary );
669}
670
671/**
672 * This function returns true if the_thread is NULL and false otherwise.
673 */
674
675RTEMS_INLINE_ROUTINE bool _Thread_Is_null (
676  const Thread_Control *the_thread
677)
678{
679  return ( the_thread == NULL );
680}
681
682/**
683 * @brief Is proxy blocking.
684 *
685 * status which indicates that a proxy is blocking, and false otherwise.
686 */
687RTEMS_INLINE_ROUTINE bool _Thread_Is_proxy_blocking (
688  uint32_t   code
689)
690{
691  return (code == THREAD_STATUS_PROXY_BLOCKING);
692}
693
694RTEMS_INLINE_ROUTINE uint32_t _Thread_Get_maximum_internal_threads(void)
695{
696  /* Idle threads */
697  uint32_t maximum_internal_threads =
698    rtems_configuration_get_maximum_processors();
699
700  /* MPCI thread */
701#if defined(RTEMS_MULTIPROCESSING)
702  if ( _System_state_Is_multiprocessing ) {
703    ++maximum_internal_threads;
704  }
705#endif
706
707  return maximum_internal_threads;
708}
709
710RTEMS_INLINE_ROUTINE Thread_Control *_Thread_Internal_allocate( void )
711{
712  return (Thread_Control *)
713    _Objects_Allocate_unprotected( &_Thread_Internal_information );
714}
715
716/**
717 * @brief Gets the heir of the processor and makes it executing.
718 *
719 * The thread dispatch necessary indicator is cleared as a side-effect.
720 *
721 * @return The heir thread.
722 *
723 * @see _Thread_Dispatch(), _Thread_Start_multitasking() and
724 * _Thread_Dispatch_update_heir().
725 */
726RTEMS_INLINE_ROUTINE Thread_Control *_Thread_Get_heir_and_make_it_executing(
727  Per_CPU_Control *cpu_self
728)
729{
730  Thread_Control *heir;
731
732  cpu_self->dispatch_necessary = false;
733
734#if defined( RTEMS_SMP )
735  /*
736   * It is critical that we first update the dispatch necessary and then the
737   * read the heir so that we don't miss an update by
738   * _Thread_Dispatch_update_heir().
739   */
740  _Atomic_Fence( ATOMIC_ORDER_SEQ_CST );
741#endif
742
743  heir = cpu_self->heir;
744  cpu_self->executing = heir;
745
746  return heir;
747}
748
749#if defined( RTEMS_SMP )
750RTEMS_INLINE_ROUTINE void _Thread_Dispatch_update_heir(
751  Per_CPU_Control *cpu_self,
752  Per_CPU_Control *cpu_for_heir,
753  Thread_Control  *heir
754)
755{
756  cpu_for_heir->heir = heir;
757
758  /*
759   * It is critical that we first update the heir and then the dispatch
760   * necessary so that _Thread_Get_heir_and_make_it_executing() cannot miss an
761   * update.
762   */
763  _Atomic_Fence( ATOMIC_ORDER_SEQ_CST );
764
765  /*
766   * Only update the dispatch necessary indicator if not already set to
767   * avoid superfluous inter-processor interrupts.
768   */
769  if ( !cpu_for_heir->dispatch_necessary ) {
770    cpu_for_heir->dispatch_necessary = true;
771
772    if ( cpu_for_heir != cpu_self ) {
773      _Per_CPU_Send_interrupt( cpu_for_heir );
774    }
775  }
776}
777#endif
778
779RTEMS_INLINE_ROUTINE void _Thread_Update_cpu_time_used(
780  Thread_Control *executing,
781  Timestamp_Control *time_of_last_context_switch
782)
783{
784  Timestamp_Control uptime;
785  Timestamp_Control ran;
786
787  _TOD_Get_uptime( &uptime );
788  _Timestamp_Subtract(
789    time_of_last_context_switch,
790    &uptime,
791    &ran
792  );
793  *time_of_last_context_switch = uptime;
794  _Timestamp_Add_to( &executing->cpu_time_used, &ran );
795}
796
797RTEMS_INLINE_ROUTINE void _Thread_Action_control_initialize(
798  Thread_Action_control *action_control
799)
800{
801  _Chain_Initialize_empty( &action_control->Chain );
802}
803
804RTEMS_INLINE_ROUTINE void _Thread_Action_initialize(
805  Thread_Action         *action,
806  Thread_Action_handler  handler
807)
808{
809  action->handler = handler;
810  _Chain_Set_off_chain( &action->Node );
811}
812
813RTEMS_INLINE_ROUTINE Per_CPU_Control *
814  _Thread_Action_ISR_disable_and_acquire_for_executing( ISR_Level *level )
815{
816  Per_CPU_Control *cpu;
817
818  _ISR_Disable_without_giant( *level );
819  cpu = _Per_CPU_Get();
820  _Per_CPU_Acquire( cpu );
821
822  return cpu;
823}
824
825RTEMS_INLINE_ROUTINE Per_CPU_Control *_Thread_Action_ISR_disable_and_acquire(
826  Thread_Control *thread,
827  ISR_Level      *level
828)
829{
830  Per_CPU_Control *cpu;
831
832  _ISR_Disable_without_giant( *level );
833  cpu = _Thread_Get_CPU( thread );
834  _Per_CPU_Acquire( cpu );
835
836  return cpu;
837}
838
839RTEMS_INLINE_ROUTINE void _Thread_Action_release_and_ISR_enable(
840  Per_CPU_Control *cpu,
841  ISR_Level level
842)
843{
844  _Per_CPU_Release_and_ISR_enable( cpu, level );
845}
846
847RTEMS_INLINE_ROUTINE void _Thread_Add_post_switch_action(
848  Thread_Control *thread,
849  Thread_Action  *action
850)
851{
852  Per_CPU_Control *cpu_of_thread;
853  ISR_Level        level;
854
855  cpu_of_thread = _Thread_Action_ISR_disable_and_acquire( thread, &level );
856  cpu_of_thread->dispatch_necessary = true;
857
858#if defined(RTEMS_SMP)
859  if ( _Per_CPU_Get() != cpu_of_thread ) {
860    _Per_CPU_Send_interrupt( cpu_of_thread );
861  }
862#endif
863
864  _Chain_Append_if_is_off_chain_unprotected(
865    &thread->Post_switch_actions.Chain,
866    &action->Node
867  );
868
869  _Thread_Action_release_and_ISR_enable( cpu_of_thread, level );
870}
871
872RTEMS_INLINE_ROUTINE bool _Thread_Is_life_restarting(
873  Thread_Life_state life_state
874)
875{
876  return ( life_state & THREAD_LIFE_RESTARTING ) != 0;
877}
878
879RTEMS_INLINE_ROUTINE bool _Thread_Is_life_terminating(
880  Thread_Life_state life_state
881)
882{
883  return ( life_state & THREAD_LIFE_TERMINATING ) != 0;
884}
885
886RTEMS_INLINE_ROUTINE bool _Thread_Is_life_protected(
887  Thread_Life_state life_state
888)
889{
890  return ( life_state & THREAD_LIFE_PROTECTED ) != 0;
891}
892
893RTEMS_INLINE_ROUTINE bool _Thread_Is_life_changing(
894  Thread_Life_state life_state
895)
896{
897  return ( life_state & THREAD_LIFE_RESTARTING_TERMINATING ) != 0;
898}
899
900/**
901 * @brief Returns true if the thread owns resources, and false otherwise.
902 *
903 * Resources are accounted with the Thread_Control::resource_count resource
904 * counter.  This counter is used by semaphore objects for example.
905 *
906 * In addition to the resource counter there is a resource dependency tree
907 * available on SMP configurations.  In case this tree is non-empty, then the
908 * thread owns resources.
909 *
910 * @param[in] the_thread The thread.
911 */
912RTEMS_INLINE_ROUTINE bool _Thread_Owns_resources(
913  const Thread_Control *the_thread
914)
915{
916  bool owns_resources = the_thread->resource_count != 0;
917
918#if defined(RTEMS_SMP)
919  owns_resources = owns_resources
920    || _Resource_Node_owns_resources( &the_thread->Resource_node );
921#endif
922
923  return owns_resources;
924}
925
926RTEMS_INLINE_ROUTINE void _Thread_Debug_set_real_processor(
927  Thread_Control  *the_thread,
928  Per_CPU_Control *cpu
929)
930{
931#if defined(RTEMS_SMP) && defined(RTEMS_DEBUG)
932  the_thread->Scheduler.debug_real_cpu = cpu;
933#else
934  (void) the_thread;
935  (void) cpu;
936#endif
937}
938
939#if !defined(__DYNAMIC_REENT__)
940/**
941 * This routine returns the C library re-enterant pointer.
942 */
943
944RTEMS_INLINE_ROUTINE struct _reent **_Thread_Get_libc_reent( void )
945{
946  return _Thread_libc_reent;
947}
948
949/**
950 * This routine set the C library re-enterant pointer.
951 */
952
953RTEMS_INLINE_ROUTINE void _Thread_Set_libc_reent (
954  struct _reent **libc_reent
955)
956{
957  _Thread_libc_reent = libc_reent;
958}
959#endif
960
961/** @}*/
962
963#ifdef __cplusplus
964}
965#endif
966
967#if defined(RTEMS_MULTIPROCESSING)
968#include <rtems/score/threadmp.h>
969#endif
970
971#endif
972/* end of include file */
Note: See TracBrowser for help on using the repository browser.