source: rtems/cpukit/rtems/src/taskrestart.c @ e6b31b27

4.115
Last change on this file since e6b31b27 was 8690b53, checked in by Sebastian Huber <sebastian.huber@…>, on 03/25/14 at 09:53:28

score: Add parameter to _Thread_Restart()

The executing thread will be later used for a common implementation with
_Thread_Close().

  • Property mode set to 100644
File size: 1.1 KB
Line 
1/**
2 *  @file
3 *
4 *  @brief RTEMS Task Restart
5 *  @ingroup ClassicTasks
6 */
7
8/*
9 *  COPYRIGHT (c) 1989-2014.
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.org/license/LICENSE.
15 */
16
17#if HAVE_CONFIG_H
18#include "config.h"
19#endif
20
21#include <rtems/rtems/tasks.h>
22#include <rtems/score/threadimpl.h>
23
24rtems_status_code rtems_task_restart(
25  rtems_id  id,
26  uint32_t  argument
27)
28{
29  Thread_Control          *the_thread;
30  Objects_Locations        location;
31
32  the_thread = _Thread_Get( id, &location );
33  switch ( location ) {
34
35    case OBJECTS_LOCAL:
36      if ( _Thread_Restart( the_thread, _Thread_Executing, NULL, argument ) ) {
37        _Objects_Put( &the_thread->Object );
38        return RTEMS_SUCCESSFUL;
39      }
40      _Objects_Put( &the_thread->Object );
41      return RTEMS_INCORRECT_STATE;
42
43#if defined(RTEMS_MULTIPROCESSING)
44    case OBJECTS_REMOTE:
45      _Thread_Dispatch();
46      return RTEMS_ILLEGAL_ON_REMOTE_OBJECT;
47#endif
48
49    case OBJECTS_ERROR:
50      break;
51  }
52
53  return RTEMS_INVALID_ID;
54}
Note: See TracBrowser for help on using the repository browser.