summaryrefslogtreecommitdiffstats
path: root/src/usr/diag/mdia/mdiasm.H
diff options
context:
space:
mode:
authorBrad Bishop <bradleyb@us.ibm.com>2012-03-13 13:53:53 -0500
committerA. Patrick Williams III <iawillia@us.ibm.com>2012-03-19 10:57:31 -0500
commit4bd432b988c1fe06c835bc6a4e4f901e136c30e7 (patch)
tree7ce43242b1691151c334891358da7f0a6fb835ba /src/usr/diag/mdia/mdiasm.H
parentf1760e04ceab564f8cef0c8d267bece75cce116c (diff)
downloadtalos-hostboot-4bd432b988c1fe06c835bc6a4e4f901e136c30e7.tar.gz
talos-hostboot-4bd432b988c1fe06c835bc6a4e4f901e136c30e7.zip
initial mdia commit. directories, makefiles, workitem
Change-Id: Ic48a13935bfea72def5cdc63db3a93bb659ded30 Reviewed-on: http://gfw160.austin.ibm.com:8080/gerrit/751 Tested-by: Jenkins Server Reviewed-by: A. Patrick Williams III <iawillia@us.ibm.com>
Diffstat (limited to 'src/usr/diag/mdia/mdiasm.H')
-rw-r--r--src/usr/diag/mdia/mdiasm.H74
1 files changed, 74 insertions, 0 deletions
diff --git a/src/usr/diag/mdia/mdiasm.H b/src/usr/diag/mdia/mdiasm.H
new file mode 100644
index 000000000..b320f72f6
--- /dev/null
+++ b/src/usr/diag/mdia/mdiasm.H
@@ -0,0 +1,74 @@
+// IBM_PROLOG_BEGIN_TAG
+// This is an automatically generated prolog.
+//
+// $Source: src/usr/diag/mdia/mdiasm.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 __MDIA_MDIASM_H
+#define __MDIA_MDIASM_H
+
+/**
+ * @file mdiasm.H
+ * @brief mdia state machine definition
+ */
+
+#include "mdiafwd.H"
+
+namespace MDIA
+{
+
+/**
+ * @brief memory diagnostics step state machine
+ */
+class StateMachine
+{
+ public:
+
+ /**
+ * @brief work item entry point for threadpool
+ *
+ * @param[in] i_target work item target
+ * @param[in] i_phase work item phase
+ */
+ void executeWorkItem(TARGETING::TargetHandle_t i_target, WorkFlowPhase i_phase) {}
+
+ /**
+ * @brief ctor
+ */
+ StateMachine() {}
+
+ /**
+ * @brief dtor
+ */
+ ~StateMachine() {}
+
+ private:
+
+ /**
+ * @brief copy disabled
+ */
+ StateMachine(const StateMachine &);
+
+ /**
+ * @brief assignment disabled
+ */
+ StateMachine & operator=(const StateMachine &);
+};
+}
+#endif
OpenPOWER on IntegriCloud