source: rtems/cpukit/score/src/threaddelayended.c @ c398c66

4.115
Last change on this file since c398c66 was 4fc370e, checked in by Sebastian Huber <sebastian.huber@…>, on 06/05/13 at 10:08:23

score: Move thread dispatch content to new file

Move thread dispatch declarations and inline functions to new header
<rtems/score/threaddispatch.h> to make it independent of the
Thread_Control structure. This avoids a cyclic dependency in case
thread dispatch functions are used for the object implementation.

  • Property mode set to 100644
File size: 1.4 KB
Line 
1/**
2 * @file
3 *
4 * @brief End the Delay of a Thread
5 * @ingroup ScoreThread
6 */
7
8/*
9 *  COPYRIGHT (c) 1989-2007.
10 *  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.com/license/LICENSE.
15 */
16
17#if HAVE_CONFIG_H
18#include "config.h"
19#endif
20
21#include <rtems/system.h>
22#include <rtems/score/apiext.h>
23#include <rtems/score/context.h>
24#include <rtems/score/interr.h>
25#include <rtems/score/isr.h>
26#include <rtems/score/object.h>
27#include <rtems/score/priority.h>
28#include <rtems/score/states.h>
29#include <rtems/score/sysstate.h>
30#include <rtems/score/thread.h>
31#include <rtems/score/threaddispatch.h>
32#include <rtems/score/threadq.h>
33#include <rtems/score/wkspace.h>
34
35void _Thread_Delay_ended(
36  Objects_Id  id,
37  void       *ignored __attribute__((unused))
38)
39{
40  Thread_Control    *the_thread;
41  Objects_Locations  location;
42
43  the_thread = _Thread_Get( id, &location );
44  switch ( location ) {
45    case OBJECTS_ERROR:
46#if defined(RTEMS_MULTIPROCESSING)
47    case OBJECTS_REMOTE:  /* impossible */
48#endif
49      break;
50    case OBJECTS_LOCAL:
51      _Thread_Clear_state(
52        the_thread,
53        STATES_DELAYING
54          | STATES_WAITING_FOR_TIME
55          | STATES_INTERRUPTIBLE_BY_SIGNAL
56      );
57      _Thread_Unnest_dispatch();
58      break;
59  }
60}
Note: See TracBrowser for help on using the repository browser.