diff options
author | Terry J. Opie <opiet@us.ibm.com> | 2012-05-17 13:22:48 -0500 |
---|---|---|
committer | A. Patrick Williams III <iawillia@us.ibm.com> | 2012-06-12 12:41:41 -0500 |
commit | dec09123e59a74c471ab967cd662a57a53b16800 (patch) | |
tree | 04b78fe1863b4d72f91fdb3acbf12e1b292b4ed0 /src/include/usr/initservice/extinitserviceif.H | |
parent | c57e10754ce222368b371355509e2f505e724893 (diff) | |
download | talos-hostboot-dec09123e59a74c471ab967cd662a57a53b16800.tar.gz talos-hostboot-dec09123e59a74c471ab967cd662a57a53b16800.zip |
Host Start Payload
- Start Payload
- System attributes for payload base/entry
- Execute Cxx Unit tests before starting payload
- Send mailbox messages to signal Fsp
Change-Id: I314920c64d4c9deaa781696e02231ff8dc8de678
RTC: 39892
Reviewed-on: http://gfw160.austin.ibm.com:8080/gerrit/1075
Tested-by: Jenkins Server
Reviewed-by: A. Patrick Williams III <iawillia@us.ibm.com>
Diffstat (limited to 'src/include/usr/initservice/extinitserviceif.H')
-rw-r--r-- | src/include/usr/initservice/extinitserviceif.H | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/src/include/usr/initservice/extinitserviceif.H b/src/include/usr/initservice/extinitserviceif.H new file mode 100644 index 000000000..b8ba61980 --- /dev/null +++ b/src/include/usr/initservice/extinitserviceif.H @@ -0,0 +1,41 @@ +// IBM_PROLOG_BEGIN_TAG +// This is an automatically generated prolog. +// +// $Source: src/include/usr/initservice/extinitserviceif.H $ +// +// IBM CONFIDENTIAL +// +// COPYRIGHT International Business Machines Corp. 2012 +// +// p1 +// +// Object Code Only (OCO) source materials +// Licensed Internal Code Source Materials +// IBM HostBoot Licensed Internal Code +// +// The source code for this program is not published or other- +// wise divested of its trade secrets, irrespective of what has +// been deposited with the U.S. Copyright Office. +// +// Origin: 30 +// +// IBM_PROLOG_END +#ifndef __INITSERVICE_EXTINITSERVICEIF_H +#define __INITSERVICE_EXTINITSERVICEIF_H + +namespace INITSERVICE +{ + +/** + * @brief This function will execute the Cxx Unit tests for Hostboot. It is + * to be done here, instead of in Initservice, because when this istep + * completes the Payload will be started. + * + * @return errlHndl_t - NULL if successfule, otherwise a pointer to the error + * log. + */ +errlHndl_t executeUnitTests ( void ); + +} + +#endif |