From ea6bfcbe1eaa2ddc38f6db16e63d10eb3e4e96ac Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Fri, 12 Nov 1999 21:12:27 +0000 Subject: + Modified correct return path to call _ITRON_return_errorno( E_OK ) instead of enabling dispatching and returning E_OK. + Changed validation of the_thread to validation of location. --- c/src/exec/itron/src/can_wup.c | 7 ++----- cpukit/itron/src/can_wup.c | 7 ++----- 2 files changed, 4 insertions(+), 10 deletions(-) diff --git a/c/src/exec/itron/src/can_wup.c b/c/src/exec/itron/src/can_wup.c index b7442d1392..61ef0dc259 100644 --- a/c/src/exec/itron/src/can_wup.c +++ b/c/src/exec/itron/src/can_wup.c @@ -29,9 +29,6 @@ ER can_wup( Objects_Locations location; the_thread = _ITRON_Task_Get( tskid, &location ); - if (!the_thread) - _ITRON_return_errorno( _ITRON_Task_Clarify_get_id_error( tskid ) ); - switch ( location ) { case OBJECTS_REMOTE: case OBJECTS_ERROR: @@ -41,9 +38,9 @@ ER can_wup( /* * XXX - FILL ME IN. */ - return E_OK; + _ITRON_return_errorno( E_OK ); } - return E_OBJ; /* XXX - Should never get here */ + _ITRON_return_errorno( E_OBJ ); /* XXX - Should never get here */ } diff --git a/cpukit/itron/src/can_wup.c b/cpukit/itron/src/can_wup.c index b7442d1392..61ef0dc259 100644 --- a/cpukit/itron/src/can_wup.c +++ b/cpukit/itron/src/can_wup.c @@ -29,9 +29,6 @@ ER can_wup( Objects_Locations location; the_thread = _ITRON_Task_Get( tskid, &location ); - if (!the_thread) - _ITRON_return_errorno( _ITRON_Task_Clarify_get_id_error( tskid ) ); - switch ( location ) { case OBJECTS_REMOTE: case OBJECTS_ERROR: @@ -41,9 +38,9 @@ ER can_wup( /* * XXX - FILL ME IN. */ - return E_OK; + _ITRON_return_errorno( E_OK ); } - return E_OBJ; /* XXX - Should never get here */ + _ITRON_return_errorno( E_OBJ ); /* XXX - Should never get here */ } -- cgit v1.2.3