diff options
Diffstat (limited to 'src/include/usr/errl')
| -rw-r--r-- | src/include/usr/errl/errlmanager.H | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/src/include/usr/errl/errlmanager.H b/src/include/usr/errl/errlmanager.H index 23319a81a..134e3958f 100644 --- a/src/include/usr/errl/errlmanager.H +++ b/src/include/usr/errl/errlmanager.H @@ -5,7 +5,7 @@ /* */ /* IBM CONFIDENTIAL */ /* */ -/* COPYRIGHT International Business Machines Corp. 2011,2013 */ +/* COPYRIGHT International Business Machines Corp. 2011,2014 */ /* */ /* p1 */ /* */ @@ -170,6 +170,14 @@ public: return iv_hwasProcessCalloutFn; } + /** + * @brief Determines if any non-informational logs have been committed + * during this boot. + * + * @return true - A non-informational log has been committed. + */ + static bool errlCommittedThisBoot(); + protected: /** * @brief Destructor @@ -422,6 +430,8 @@ private: bool iv_isSpBaseServices; // do we need to send to FSP bool iv_isMboxEnabled; // are we able to send to FSP std::list<msg_t *> iv_errlToSend; // msgs still to be sent to FSP + + bool iv_nonInfoCommitted; //< Keeps track of any non-informational logs. }; } // End namespace |

