OpenCores
URL https://opencores.org/ocsvn/or1k/or1k/trunk

Subversion Repositories or1k

[/] [or1k/] [trunk/] [rtems-20020807/] [cpukit/] [itron/] [src/] [sta_tsk.c] - Blame information for rev 1026

Go to most recent revision | Details | Compare with Previous | View Log

Line No. Rev Author Line
1 1026 ivang
/*
2
 *  COPYRIGHT (c) 1989-1999.
3
 *  On-Line Applications Research Corporation (OAR).
4
 *
5
 *  The license and distribution terms for this file may be
6
 *  found in the file LICENSE in this distribution or at
7
 *  http://www.OARcorp.com/rtems/license.html.
8
 *
9
 *  sta_tsk.c,v 1.6 2001/01/24 14:15:04 joel Exp
10
 */
11
 
12
#if HAVE_CONFIG_H
13
#include "config.h"
14
#endif
15
 
16
#include <itron.h>
17
 
18
#include <rtems/score/thread.h>
19
#include <rtems/score/userext.h>
20
#include <rtems/score/wkspace.h>
21
#include <rtems/score/apiext.h>
22
#include <rtems/score/sysstate.h>
23
 
24
#include <rtems/itron/task.h>
25
 
26
 
27
/*
28
 *  sta_tsk - Start Task
29
 */
30
 
31
ER sta_tsk(
32
  ID   tskid,
33
  INT  stacd
34
)
35
{
36
  register Thread_Control *the_thread;
37
  Objects_Locations        location;
38
  boolean                  status;
39
 
40
  the_thread = _ITRON_Task_Get( tskid, &location );
41
  switch ( location ) {
42
    case OBJECTS_REMOTE:
43
    case OBJECTS_ERROR:
44
      return _ITRON_Task_Clarify_get_id_error( tskid );
45
 
46
    case OBJECTS_LOCAL:
47
 
48
      if ( !_States_Is_dormant( the_thread->current_state ) )
49
        _ITRON_return_errorno( E_OBJ );
50
 
51
      status = _Thread_Start(
52
        the_thread,
53
        THREAD_START_NUMERIC, /* XXX should be able to say we have no arg */
54
        the_thread->Start.entry_point,
55
        0,                    /* XXX supercore forces us to have an arg */
56
 
57
      );
58
 
59
      /*
60
       * This error can not happen entry_point is checked in create.
61
         if ( !status )
62
           _ITRON_return_errorno(  E_OBJ );
63
       */
64
 
65
      break;
66
  }
67
 
68
  _ITRON_return_errorno( E_OK );
69
}
70
 
71
 
72
 
73
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.