diff options
| author | Richard J. Knight <rjknight@us.ibm.com> | 2013-02-08 17:13:45 -0600 |
|---|---|---|
| committer | A. Patrick Williams III <iawillia@us.ibm.com> | 2013-02-28 10:03:27 -0600 |
| commit | 3d50adf7e2ba101168f6e0cb1be69d552814500f (patch) | |
| tree | eb93bb56e495ff1f03acb3cece39a065958e580f /src/usr/errl/parser/errlparserbase.C | |
| parent | 7d09350be4f99be134923640315755902a13c8a5 (diff) | |
| download | blackbird-hostboot-3d50adf7e2ba101168f6e0cb1be69d552814500f.tar.gz blackbird-hostboot-3d50adf7e2ba101168f6e0cb1be69d552814500f.zip | |
Support ERRL UD and SRC parsing in hostboot standalone
Change-Id: I16ec13f87d9a71c3e0248bf4776e9f3402be6285
RTC:49967
Reviewed-on: http://gfw160.austin.ibm.com:8080/gerrit/3138
Tested-by: Jenkins Server
Reviewed-by: Brian H. Horton <brianh@linux.ibm.com>
Reviewed-by: MIKE J. JONES <mjjones@us.ibm.com>
Reviewed-by: Mark W. Wenning <wenning@us.ibm.com>
Reviewed-by: A. Patrick Williams III <iawillia@us.ibm.com>
Diffstat (limited to 'src/usr/errl/parser/errlparserbase.C')
| -rw-r--r-- | src/usr/errl/parser/errlparserbase.C | 81 |
1 files changed, 0 insertions, 81 deletions
diff --git a/src/usr/errl/parser/errlparserbase.C b/src/usr/errl/parser/errlparserbase.C deleted file mode 100644 index 5baf03e09..000000000 --- a/src/usr/errl/parser/errlparserbase.C +++ /dev/null @@ -1,81 +0,0 @@ -// IBM_PROLOG_BEGIN_TAG -// This is an automatically generated prolog. -// -// $Source: src/usr/errl/parser/errlparserbase.C $ -// -// IBM CONFIDENTIAL -// -// COPYRIGHT International Business Machines Corp. 2011 -// -// 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 -/** - * @file errlparsebase.C - * - * @brief <Brief Description of this file> - * - * <Detailed description of what this file does, functions it includes, - * etc,> -*/ - - -/*****************************************************************************/ -// I n c l u d e s -/*****************************************************************************/ -#include <errl/parser/errlparserbase.H> - - -///< Maximum displayable characters -static const int LINE_WIDTH = 78; - - - -/*****************************************************************************/ -// Constructor -/*****************************************************************************/ -ErrlParser::ErrlParser( - FILE * i_output -) -{ - -} - - -/*****************************************************************************/ -// Destructor -/*****************************************************************************/ -ErrlParser::~ErrlParser() -{ - -} - - -/*****************************************************************************/ -// Numeric Print -/*****************************************************************************/ -void ErrlParser::PrintNumber( - const char * i_label, - const char * i_fmt, - uint32_t i_value -) -{ - char l_tmp[LINE_WIDTH]; - - snprintf(l_tmp,LINE_WIDTH,i_fmt,i_value); - l_tmp[LINE_WIDTH-1] = 0; - - PrintString( i_label, l_tmp ); -} - - |

