summaryrefslogtreecommitdiffstats
path: root/src/lib
diff options
context:
space:
mode:
authorStephen Cprek <smcprek@us.ibm.com>2017-04-06 17:08:15 -0500
committerDaniel M. Crowell <dcrowell@us.ibm.com>2017-04-10 17:57:10 -0400
commit5afa41551b3d8e0a84cf21cebfc89a194d326e76 (patch)
tree27018d5dc7aa801fee3e77af6be9c7693a178aa3 /src/lib
parentdee1ed49ad08fdb4b91775f50f65e69ad5bbfafa (diff)
downloadtalos-hostboot-5afa41551b3d8e0a84cf21cebfc89a194d326e76.tar.gz
talos-hostboot-5afa41551b3d8e0a84cf21cebfc89a194d326e76.zip
Add map list initialization and at() methods
Also add ErrnoToString() as a test which is a functionality ported from p8 Change-Id: Ia6dd9b37638af2634267e224d9b97133bf984fb4 Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/38956 Tested-by: Jenkins Server <pfd-jenkins+hostboot@us.ibm.com> Reviewed-by: Nicholas E. Bofferding <bofferdn@us.ibm.com> Reviewed-by: Martin Gloff <mgloff@us.ibm.com> Tested-by: Jenkins OP Build CI <op-jenkins+hostboot@us.ibm.com> Tested-by: FSP CI Jenkins <fsp-CI-jenkins+hostboot@us.ibm.com> Reviewed-by: Daniel M. Crowell <dcrowell@us.ibm.com>
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/errno.C60
-rw-r--r--src/lib/makefile1
2 files changed, 61 insertions, 0 deletions
diff --git a/src/lib/errno.C b/src/lib/errno.C
new file mode 100644
index 000000000..d4597d23a
--- /dev/null
+++ b/src/lib/errno.C
@@ -0,0 +1,60 @@
+/* IBM_PROLOG_BEGIN_TAG */
+/* This is an automatically generated prolog. */
+/* */
+/* $Source: src/lib/errno.C $ */
+/* */
+/* OpenPOWER HostBoot Project */
+/* */
+/* Contributors Listed Below - COPYRIGHT 2017 */
+/* [+] International Business Machines Corp. */
+/* */
+/* */
+/* Licensed under the Apache License, Version 2.0 (the "License"); */
+/* you may not use this file except in compliance with the License. */
+/* You may obtain a copy of the License at */
+/* */
+/* http://www.apache.org/licenses/LICENSE-2.0 */
+/* */
+/* Unless required by applicable law or agreed to in writing, software */
+/* distributed under the License is distributed on an "AS IS" BASIS, */
+/* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or */
+/* implied. See the License for the specific language governing */
+/* permissions and limitations under the License. */
+/* */
+/* IBM_PROLOG_END_TAG */
+#include <errno.h>
+
+const char * ErrnoToString( int i_errno )
+{
+ // Map of errnos to string.
+ // Kept within function for deferred malloc and more error handling
+ // Otherwise the map is malloc'd before memory is initialized
+ // Note: All keys and values are preceded with a '-', this is because the
+ // the errno's will be set to 2's complement when there's an error.
+ static const std::map<int, const char*> ErrnoToStringMap =
+ {
+ { -ENOENT , "-ENOENT"},
+ { -EIO , "-EIO"},
+ { -ENXIO , "-ENXIO"},
+ { -ENOEXEC , "-ENOEXEC"},
+ { -EBADF , "-EBADF"},
+ { -EAGAIN , "-EAGAIN"},
+ { -EACCES , "-EACCES"},
+ { -EFAULT , "-EFAULT"},
+ { -EINVAL , "-EINVAL"},
+ { -ENFILE , "-ENFILE"},
+ { -EDEADLK , "-EDEADLK"},
+ { -ETIME , "-ETIME"},
+ { -EALREADY , "-EALREADY"},
+ { -EWOULDBLOCK, "-EWOULDBLOCK"},
+ };
+
+ if (ErrnoToStringMap.count(i_errno) > 0)
+ {
+ return ErrnoToStringMap.at(i_errno);
+ }
+ else
+ {
+ return "UNKNOWN";
+ }
+} \ No newline at end of file
diff --git a/src/lib/makefile b/src/lib/makefile
index 5fdf78ac8..5e64025d1 100644
--- a/src/lib/makefile
+++ b/src/lib/makefile
@@ -49,6 +49,7 @@ OBJS += crc32.o
OBJS += utilmisc.o
OBJS += tls.o
+OBJS += errno.o
ifdef HOSTBOOT_MEMORY_LEAKS
COMMONFLAGS += -DHOSTBOOT_MEMORY_LEAKS=1
OpenPOWER on IntegriCloud