diff options
author | Doug Gilbert <dgilbert@us.ibm.com> | 2014-04-07 16:49:18 -0500 |
---|---|---|
committer | A. Patrick Williams III <iawillia@us.ibm.com> | 2014-04-11 12:46:40 -0500 |
commit | a903c4f89dd12143ddb187ed8d7602d426fbaec5 (patch) | |
tree | d66ca929f02bf9c73d220b1e8830050de9013db8 /src/include/runtime | |
parent | d83e0f05717dc06edc537dcab1deb1758ba7dcf5 (diff) | |
download | talos-hostboot-a903c4f89dd12143ddb187ed8d7602d426fbaec5.tar.gz talos-hostboot-a903c4f89dd12143ddb187ed8d7602d426fbaec5.zip |
Sapphire OCC error handling in HBRT
Change-Id: Ie55785f586da6416c3d2a46767a2f9f17fad282c
RTC: 101156
Backport: release-fips810
CQ: SW256035
Reviewed-on: http://gfw160.aus.stglabs.ibm.com:8080/gerrit/10258
Tested-by: Jenkins Server
Reviewed-by: Corey V. Swenson <cswenson@us.ibm.com>
Reviewed-by: Daniel M. Crowell <dcrowell@us.ibm.com>
Reviewed-by: A. Patrick Williams III <iawillia@us.ibm.com>
Diffstat (limited to 'src/include/runtime')
-rw-r--r-- | src/include/runtime/interface.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/include/runtime/interface.h b/src/include/runtime/interface.h index eccf39bbd..f45f58b21 100644 --- a/src/include/runtime/interface.h +++ b/src/include/runtime/interface.h @@ -133,6 +133,12 @@ typedef struct hostInterfaces */ void (*nanosleep)(uint64_t i_seconds, uint64_t i_nano_seconds); + /** + * @brief Report an error to the host + * @param[in] Failing status that identifies the nature of the fail + * @param[in] Identifier that specifies the failing part + */ + void (*report_failure)( uint64_t i_status, uint64_t i_partId ); // Reserve some space for future growth. void (*reserved[32])(void); |