summaryrefslogtreecommitdiffstats
path: root/src/usr/hwpf/hwp/core_activate/core_activate.C
diff options
context:
space:
mode:
Diffstat (limited to 'src/usr/hwpf/hwp/core_activate/core_activate.C')
-rw-r--r--src/usr/hwpf/hwp/core_activate/core_activate.C12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/usr/hwpf/hwp/core_activate/core_activate.C b/src/usr/hwpf/hwp/core_activate/core_activate.C
index b4b98a16c..89824647b 100644
--- a/src/usr/hwpf/hwp/core_activate/core_activate.C
+++ b/src/usr/hwpf/hwp/core_activate/core_activate.C
@@ -81,7 +81,7 @@ using namespace ISTEP;
// Wrapper function to call 16.1 :
// host_activate_master
//
- void call_host_activate_master( void *io_pArgs )
+ void* call_host_activate_master( void *io_pArgs )
{
errlHndl_t l_errl = NULL;
@@ -202,7 +202,7 @@ using namespace ISTEP;
"call_host_activate_master exit" );
// end task, returning any errorlogs to IStepDisp
- task_end2( l_errl );
+ return l_errl;
}
@@ -212,7 +212,7 @@ using namespace ISTEP;
// Wrapper function to call 16.2 :
// host_activate_slave_cores
//
-void call_host_activate_slave_cores( void *io_pArgs )
+void* call_host_activate_slave_cores( void *io_pArgs )
{
errlHndl_t l_errl = NULL;
@@ -289,7 +289,7 @@ void call_host_activate_slave_cores( void *io_pArgs )
"call_host_activate_slave_cores exit" );
// end task, returning any errorlogs to IStepDisp
- task_end2( l_errl );
+ return l_errl;
}
@@ -298,7 +298,7 @@ void call_host_activate_slave_cores( void *io_pArgs )
// Wrapper function to call 16.3 :
// host_ipl_complete
//
-void call_host_ipl_complete( void *io_pArgs )
+void* call_host_ipl_complete( void *io_pArgs )
{
errlHndl_t l_errl = NULL;
@@ -361,7 +361,7 @@ void call_host_ipl_complete( void *io_pArgs )
// end task, returning any errorlogs to IStepDisp
- task_end2( l_errl );
+ return l_errl;
}
OpenPOWER on IntegriCloud