summaryrefslogtreecommitdiffstats
path: root/cpukit/itron/src/sus_tsk.c
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1999-11-12 21:23:34 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1999-11-12 21:23:34 +0000
commitd8f3f65be0c1613e150f3c3c57378dd70be28445 (patch)
treed9d33668c98ea65021c5d17bb3ab4956020c4b4d /cpukit/itron/src/sus_tsk.c
parent+ Changed validation of the_thread to validation of location. (diff)
downloadrtems-d8f3f65be0c1613e150f3c3c57378dd70be28445.tar.bz2
+ Changed validation of the_thread to validation of location.
+ Modified correct return path to call _ITRON_return_errorno( E_OK ) instead of enabling dispatching and returning E_OK.
Diffstat (limited to 'cpukit/itron/src/sus_tsk.c')
-rw-r--r--cpukit/itron/src/sus_tsk.c15
1 files changed, 6 insertions, 9 deletions
diff --git a/cpukit/itron/src/sus_tsk.c b/cpukit/itron/src/sus_tsk.c
index 12ef07ff7b..f2ee948e0b 100644
--- a/cpukit/itron/src/sus_tsk.c
+++ b/cpukit/itron/src/sus_tsk.c
@@ -33,24 +33,21 @@ ER sus_tsk(
Objects_Locations location;
the_thread = _ITRON_Task_Get( tskid, &location );
- if (!the_thread)
- _ITRON_return_errorno( _ITRON_Task_Clarify_get_id_error( tskid ) );
-
- if ( the_thread == _Thread_Executing )
- _ITRON_return_errorno( E_OBJ );
-
switch ( location ) {
case OBJECTS_REMOTE:
case OBJECTS_ERROR:
_ITRON_return_errorno( _ITRON_Task_Clarify_get_id_error( tskid ) );
case OBJECTS_LOCAL:
+
+ if ( _Thread_Is_executing( the_thread ) )
+ _ITRON_return_errorno( E_OBJ );
+
_Thread_Suspend( the_thread );
- _Thread_Enable_dispatch();
- return E_OK;
+ _ITRON_return_errorno( E_OK );
}
- return E_OBJ; /* XXX - Should never get here */
+ _ITRON_return_errorno( E_OBJ );
}