4.104.114.84.95
Last change
on this file since 442d0478 was
eb02f47,
checked in by Joel Sherrill <joel.sherrill@…>, on 11/10/99 at 13:48:27
|
Committed modifications from ITRON Task and Task Dependendent Synchronization
Working Group. Included are tests.
|
-
Property mode set to
100644
|
File size:
636 bytes
|
Line | |
---|
1 | /* |
---|
2 | * The license and distribution terms for this file may be |
---|
3 | * found in the file LICENSE in this distribution or at |
---|
4 | * http://www.OARcorp.com/rtems/license.html. |
---|
5 | * |
---|
6 | * $Id$ |
---|
7 | */ |
---|
8 | |
---|
9 | #include <itron.h> |
---|
10 | |
---|
11 | #include <rtems/score/thread.h> |
---|
12 | #include <rtems/score/userext.h> |
---|
13 | #include <rtems/score/wkspace.h> |
---|
14 | #include <rtems/score/apiext.h> |
---|
15 | #include <rtems/score/sysstate.h> |
---|
16 | |
---|
17 | #include <rtems/itron/task.h> |
---|
18 | |
---|
19 | |
---|
20 | /* |
---|
21 | * ext_tsk - Exit Issuing Task |
---|
22 | */ |
---|
23 | |
---|
24 | void ext_tsk( void ) |
---|
25 | { |
---|
26 | _Thread_Disable_dispatch(); |
---|
27 | |
---|
28 | _Thread_Restart( _Thread_Executing, NULL, 0 ); |
---|
29 | _Thread_Set_state( _Thread_Executing, STATES_DORMANT ); |
---|
30 | |
---|
31 | _Thread_Enable_dispatch(); |
---|
32 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.