[PATCH v4 5/5] validation: rtems_task_create_from_config() errors

Sebastian Huber sebastian.huber at embedded-brains.de
Fri Sep 11 15:34:36 UTC 2020


This is the first test case generated from a specification item in the
rtems-central repository.

Update #3959.
---
 .../tc-tasks-create-from-config-errors.c      | 2369 +++++++++++++++++
 1 file changed, 2369 insertions(+)
 create mode 100644 testsuites/validation/tc-tasks-create-from-config-errors.c

diff --git a/testsuites/validation/tc-tasks-create-from-config-errors.c b/testsuites/validation/tc-tasks-create-from-config-errors.c
new file mode 100644
index 0000000000..1b10621a61
--- /dev/null
+++ b/testsuites/validation/tc-tasks-create-from-config-errors.c
@@ -0,0 +1,2369 @@
+/* SPDX-License-Identifier: BSD-2-Clause */
+
+/**
+ * @file
+ *
+ * @ingroup RTEMSTestCaseReqRtemsTasksCreateFromConfigErrors
+ */
+
+/*
+ * Copyright (C) 2020 embedded brains GmbH (http://www.embedded-brains.de)
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ * 1. Redistributions of source code must retain the above copyright
+ *    notice, this list of conditions and the following disclaimer.
+ * 2. Redistributions in binary form must reproduce the above copyright
+ *    notice, this list of conditions and the following disclaimer in the
+ *    documentation and/or other materials provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
+ * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+ * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
+ * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
+ * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
+ * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
+ * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
+ * POSSIBILITY OF SUCH DAMAGE.
+ */
+
+/*
+ * This file was automatically generated.  Do not edit it manually.
+ * Please have a look at
+ *
+ * https://docs.rtems.org/branches/master/eng/req/howto.html
+ *
+ * for information how to maintain and re-generate this file.
+ */
+
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
+#include <rtems.h>
+#include <string.h>
+#include <rtems/score/chainimpl.h>
+#include <rtems/score/objectimpl.h>
+
+#include <rtems/test.h>
+
+/**
+ * @defgroup RTEMSTestCaseReqRtemsTasksCreateFromConfigErrors \
+ *   spec:/req/rtems/tasks/create-from-config-errors
+ *
+ * @ingroup RTEMSTestSuiteTestsuitesValidation0
+ *
+ * @{
+ */
+
+typedef enum {
+  ReqRtemsTasksCreateFromConfigErrors_Pre_Id_Id,
+  ReqRtemsTasksCreateFromConfigErrors_Pre_Id_Null,
+  ReqRtemsTasksCreateFromConfigErrors_Pre_Id_NA
+} ReqRtemsTasksCreateFromConfigErrors_Pre_Id;
+
+typedef enum {
+  ReqRtemsTasksCreateFromConfigErrors_Pre_Name_Valid,
+  ReqRtemsTasksCreateFromConfigErrors_Pre_Name_Inv,
+  ReqRtemsTasksCreateFromConfigErrors_Pre_Name_NA
+} ReqRtemsTasksCreateFromConfigErrors_Pre_Name;
+
+typedef enum {
+  ReqRtemsTasksCreateFromConfigErrors_Pre_Prio_Valid,
+  ReqRtemsTasksCreateFromConfigErrors_Pre_Prio_Zero,
+  ReqRtemsTasksCreateFromConfigErrors_Pre_Prio_Inv,
+  ReqRtemsTasksCreateFromConfigErrors_Pre_Prio_NA
+} ReqRtemsTasksCreateFromConfigErrors_Pre_Prio;
+
+typedef enum {
+  ReqRtemsTasksCreateFromConfigErrors_Pre_Tasks_Avail,
+  ReqRtemsTasksCreateFromConfigErrors_Pre_Tasks_None,
+  ReqRtemsTasksCreateFromConfigErrors_Pre_Tasks_NA
+} ReqRtemsTasksCreateFromConfigErrors_Pre_Tasks;
+
+typedef enum {
+  ReqRtemsTasksCreateFromConfigErrors_Pre_TLS_Enough,
+  ReqRtemsTasksCreateFromConfigErrors_Pre_TLS_Small,
+  ReqRtemsTasksCreateFromConfigErrors_Pre_TLS_NA
+} ReqRtemsTasksCreateFromConfigErrors_Pre_TLS;
+
+typedef enum {
+  ReqRtemsTasksCreateFromConfigErrors_Pre_Stack_Enough,
+  ReqRtemsTasksCreateFromConfigErrors_Pre_Stack_Small,
+  ReqRtemsTasksCreateFromConfigErrors_Pre_Stack_NA
+} ReqRtemsTasksCreateFromConfigErrors_Pre_Stack;
+
+typedef enum {
+  ReqRtemsTasksCreateFromConfigErrors_Pre_Ext_Ok,
+  ReqRtemsTasksCreateFromConfigErrors_Pre_Ext_Err,
+  ReqRtemsTasksCreateFromConfigErrors_Pre_Ext_NA
+} ReqRtemsTasksCreateFromConfigErrors_Pre_Ext;
+
+typedef enum {
+  ReqRtemsTasksCreateFromConfigErrors_Pre_Preempt_Yes,
+  ReqRtemsTasksCreateFromConfigErrors_Pre_Preempt_No,
+  ReqRtemsTasksCreateFromConfigErrors_Pre_Preempt_NA
+} ReqRtemsTasksCreateFromConfigErrors_Pre_Preempt;
+
+typedef enum {
+  ReqRtemsTasksCreateFromConfigErrors_Post_Status_Ok,
+  ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress,
+  ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvName,
+  ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvPrio,
+  ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvSize,
+  ReqRtemsTasksCreateFromConfigErrors_Post_Status_TooMany,
+  ReqRtemsTasksCreateFromConfigErrors_Post_Status_Unsatisfied,
+  ReqRtemsTasksCreateFromConfigErrors_Post_Status_NA
+} ReqRtemsTasksCreateFromConfigErrors_Post_Status;
+
+/**
+ * @brief Test context for spec:/req/rtems/tasks/create-from-config-errors test
+ *   case.
+ */
+typedef struct {
+  rtems_status_code status;
+
+  rtems_task_config config;
+
+  rtems_id *id;
+
+  rtems_id id_value;
+
+  bool create_extension_status;
+
+  size_t stack_size;
+
+  rtems_id extension_id;
+
+  Chain_Control tasks;
+
+  /**
+   * @brief This member defines the pre-condition states for the next action.
+   */
+  size_t pcs[ 8 ];
+
+  /**
+   * @brief This member indicates if the test action loop is currently
+   *   executed.
+   */
+  bool in_action_loop;
+} ReqRtemsTasksCreateFromConfigErrors_Context;
+
+static ReqRtemsTasksCreateFromConfigErrors_Context
+  ReqRtemsTasksCreateFromConfigErrors_Instance;
+
+static const char * const ReqRtemsTasksCreateFromConfigErrors_PreDesc_Id[] = {
+  "Id",
+  "Null",
+  "NA"
+};
+
+static const char * const ReqRtemsTasksCreateFromConfigErrors_PreDesc_Name[] = {
+  "Valid",
+  "Inv",
+  "NA"
+};
+
+static const char * const ReqRtemsTasksCreateFromConfigErrors_PreDesc_Prio[] = {
+  "Valid",
+  "Zero",
+  "Inv",
+  "NA"
+};
+
+static const char * const ReqRtemsTasksCreateFromConfigErrors_PreDesc_Tasks[] = {
+  "Avail",
+  "None",
+  "NA"
+};
+
+static const char * const ReqRtemsTasksCreateFromConfigErrors_PreDesc_TLS[] = {
+  "Enough",
+  "Small",
+  "NA"
+};
+
+static const char * const ReqRtemsTasksCreateFromConfigErrors_PreDesc_Stack[] = {
+  "Enough",
+  "Small",
+  "NA"
+};
+
+static const char * const ReqRtemsTasksCreateFromConfigErrors_PreDesc_Ext[] = {
+  "Ok",
+  "Err",
+  "NA"
+};
+
+static const char * const ReqRtemsTasksCreateFromConfigErrors_PreDesc_Preempt[] = {
+  "Yes",
+  "No",
+  "NA"
+};
+
+static const char * const * const ReqRtemsTasksCreateFromConfigErrors_PreDesc[] = {
+  ReqRtemsTasksCreateFromConfigErrors_PreDesc_Id,
+  ReqRtemsTasksCreateFromConfigErrors_PreDesc_Name,
+  ReqRtemsTasksCreateFromConfigErrors_PreDesc_Prio,
+  ReqRtemsTasksCreateFromConfigErrors_PreDesc_Tasks,
+  ReqRtemsTasksCreateFromConfigErrors_PreDesc_TLS,
+  ReqRtemsTasksCreateFromConfigErrors_PreDesc_Stack,
+  ReqRtemsTasksCreateFromConfigErrors_PreDesc_Ext,
+  ReqRtemsTasksCreateFromConfigErrors_PreDesc_Preempt,
+  NULL
+};
+
+static _Thread_local int tls_variable;
+
+#define MAX_TLS_SIZE 128
+
+RTEMS_TASK_STORAGE_ALIGNMENT static char task_storage[
+  RTEMS_TASK_STORAGE_SIZE(
+    MAX_TLS_SIZE + RTEMS_MINIMUM_STACK_SIZE,
+    RTEMS_FLOATING_POINT
+  )
+];
+
+static const rtems_task_config valid_task_config = {
+  .name = rtems_build_name( 'T', 'A', 'S', 'K' ),
+  .initial_priority = 1,
+  .storage_area = task_storage,
+  .storage_size = sizeof( task_storage ),
+  .maximum_thread_local_storage_size = MAX_TLS_SIZE,
+  .initial_modes = RTEMS_DEFAULT_MODES,
+  .attributes = RTEMS_DEFAULT_MODES
+};
+
+static bool ThreadCreate( rtems_tcb *executing, rtems_tcb *created )
+{
+  (void) executing;
+  (void) created;
+
+  return
+    ReqRtemsTasksCreateFromConfigErrors_Instance.create_extension_status;
+}
+
+static const rtems_extensions_table extensions = {
+  .thread_create = ThreadCreate
+};
+
+static void ReqRtemsTasksCreateFromConfigErrors_Pre_Id_Prepare(
+  ReqRtemsTasksCreateFromConfigErrors_Context *ctx,
+  ReqRtemsTasksCreateFromConfigErrors_Pre_Id   state
+)
+{
+  switch ( state ) {
+    case ReqRtemsTasksCreateFromConfigErrors_Pre_Id_Id: {
+      ctx->id = &ctx->id_value;
+      break;
+    }
+
+    case ReqRtemsTasksCreateFromConfigErrors_Pre_Id_Null: {
+      ctx->id = NULL;
+      break;
+    }
+
+    case ReqRtemsTasksCreateFromConfigErrors_Pre_Id_NA:
+      break;
+  }
+}
+
+static void ReqRtemsTasksCreateFromConfigErrors_Pre_Name_Prepare(
+  ReqRtemsTasksCreateFromConfigErrors_Context *ctx,
+  ReqRtemsTasksCreateFromConfigErrors_Pre_Name state
+)
+{
+  switch ( state ) {
+    case ReqRtemsTasksCreateFromConfigErrors_Pre_Name_Valid: {
+      ctx->config.name = rtems_build_name( 'N', 'A', 'M', 'E' );
+      break;
+    }
+
+    case ReqRtemsTasksCreateFromConfigErrors_Pre_Name_Inv: {
+      ctx->config.name = 0;
+      break;
+    }
+
+    case ReqRtemsTasksCreateFromConfigErrors_Pre_Name_NA:
+      break;
+  }
+}
+
+static void ReqRtemsTasksCreateFromConfigErrors_Pre_Prio_Prepare(
+  ReqRtemsTasksCreateFromConfigErrors_Context *ctx,
+  ReqRtemsTasksCreateFromConfigErrors_Pre_Prio state
+)
+{
+  switch ( state ) {
+    case ReqRtemsTasksCreateFromConfigErrors_Pre_Prio_Valid: {
+      ctx->config.initial_priority = 254;
+      break;
+    }
+
+    case ReqRtemsTasksCreateFromConfigErrors_Pre_Prio_Zero: {
+      ctx->config.initial_priority = 0;
+      break;
+    }
+
+    case ReqRtemsTasksCreateFromConfigErrors_Pre_Prio_Inv: {
+      ctx->config.initial_priority = 0xffffffff;
+      break;
+    }
+
+    case ReqRtemsTasksCreateFromConfigErrors_Pre_Prio_NA:
+      break;
+  }
+}
+
+static void ReqRtemsTasksCreateFromConfigErrors_Pre_Tasks_Prepare(
+  ReqRtemsTasksCreateFromConfigErrors_Context  *ctx,
+  ReqRtemsTasksCreateFromConfigErrors_Pre_Tasks state
+)
+{
+  bool create_extension_status;
+
+  switch ( state ) {
+    case ReqRtemsTasksCreateFromConfigErrors_Pre_Tasks_Avail: {
+      /* Nothing to do */
+      break;
+    }
+
+    case ReqRtemsTasksCreateFromConfigErrors_Pre_Tasks_None: {
+      create_extension_status = ctx->create_extension_status;
+      ctx->create_extension_status = true;
+
+      while ( true ) {
+        rtems_status_code sc;
+        rtems_id id;
+
+        sc = rtems_task_create_from_config( &valid_task_config, &id );
+
+        if ( sc == RTEMS_SUCCESSFUL ) {
+          Objects_Control           *obj;
+          const Objects_Information *info;
+
+          info = _Objects_Get_information_id( id );
+          T_quiet_assert_not_null( info );
+          obj = _Objects_Get_no_protection( id, info );
+          T_quiet_assert_not_null( obj );
+          _Chain_Append_unprotected( &ctx->tasks, &obj->Node );
+        } else {
+          T_quiet_rsc( sc, RTEMS_TOO_MANY );
+          break;
+        }
+      }
+
+      ctx->create_extension_status = create_extension_status;
+      break;
+    }
+
+    case ReqRtemsTasksCreateFromConfigErrors_Pre_Tasks_NA:
+      break;
+  }
+}
+
+static void ReqRtemsTasksCreateFromConfigErrors_Pre_TLS_Prepare(
+  ReqRtemsTasksCreateFromConfigErrors_Context *ctx,
+  ReqRtemsTasksCreateFromConfigErrors_Pre_TLS  state
+)
+{
+  switch ( state ) {
+    case ReqRtemsTasksCreateFromConfigErrors_Pre_TLS_Enough: {
+      ctx->config.maximum_thread_local_storage_size = MAX_TLS_SIZE;
+      break;
+    }
+
+    case ReqRtemsTasksCreateFromConfigErrors_Pre_TLS_Small: {
+      ctx->config.maximum_thread_local_storage_size = 0;
+      break;
+    }
+
+    case ReqRtemsTasksCreateFromConfigErrors_Pre_TLS_NA:
+      break;
+  }
+}
+
+static void ReqRtemsTasksCreateFromConfigErrors_Pre_Stack_Prepare(
+  ReqRtemsTasksCreateFromConfigErrors_Context  *ctx,
+  ReqRtemsTasksCreateFromConfigErrors_Pre_Stack state
+)
+{
+  switch ( state ) {
+    case ReqRtemsTasksCreateFromConfigErrors_Pre_Stack_Enough: {
+      ctx->stack_size = RTEMS_MINIMUM_STACK_SIZE;
+      break;
+    }
+
+    case ReqRtemsTasksCreateFromConfigErrors_Pre_Stack_Small: {
+      ctx->stack_size = 0;
+      break;
+    }
+
+    case ReqRtemsTasksCreateFromConfigErrors_Pre_Stack_NA:
+      break;
+  }
+}
+
+static void ReqRtemsTasksCreateFromConfigErrors_Pre_Ext_Prepare(
+  ReqRtemsTasksCreateFromConfigErrors_Context *ctx,
+  ReqRtemsTasksCreateFromConfigErrors_Pre_Ext  state
+)
+{
+  switch ( state ) {
+    case ReqRtemsTasksCreateFromConfigErrors_Pre_Ext_Ok: {
+      ctx->create_extension_status = true;
+      break;
+    }
+
+    case ReqRtemsTasksCreateFromConfigErrors_Pre_Ext_Err: {
+      ctx->create_extension_status = false;
+      break;
+    }
+
+    case ReqRtemsTasksCreateFromConfigErrors_Pre_Ext_NA:
+      break;
+  }
+}
+
+static void ReqRtemsTasksCreateFromConfigErrors_Pre_Preempt_Prepare(
+  ReqRtemsTasksCreateFromConfigErrors_Context    *ctx,
+  ReqRtemsTasksCreateFromConfigErrors_Pre_Preempt state
+)
+{
+  switch ( state ) {
+    case ReqRtemsTasksCreateFromConfigErrors_Pre_Preempt_Yes: {
+      ctx->config.initial_modes &= ~RTEMS_PREEMPT_MASK;
+      ctx->config.initial_modes |= RTEMS_PREEMPT;
+      break;
+    }
+
+    case ReqRtemsTasksCreateFromConfigErrors_Pre_Preempt_No: {
+      ctx->config.initial_modes &= ~RTEMS_PREEMPT_MASK;
+      ctx->config.initial_modes |= RTEMS_NO_PREEMPT;
+      break;
+    }
+
+    case ReqRtemsTasksCreateFromConfigErrors_Pre_Preempt_NA:
+      break;
+  }
+}
+
+static void ReqRtemsTasksCreateFromConfigErrors_Post_Status_Check(
+  ReqRtemsTasksCreateFromConfigErrors_Context    *ctx,
+  ReqRtemsTasksCreateFromConfigErrors_Post_Status state
+)
+{
+  rtems_status_code sc;
+
+  switch ( state ) {
+    case ReqRtemsTasksCreateFromConfigErrors_Post_Status_Ok: {
+      T_rsc_success( ctx->status );
+      T_eq_ptr( ctx->id, &ctx->id_value );
+      T_ne_u32( ctx->id_value, 0xffffffff );
+
+      sc = rtems_task_delete( ctx->id_value );
+      T_rsc_success( sc );
+      break;
+    }
+
+    case ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress: {
+      T_rsc( ctx->status, RTEMS_INVALID_ADDRESS );
+      T_null( ctx->id );
+      T_eq_u32( ctx->id_value, 0xffffffff );
+      break;
+    }
+
+    case ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvName: {
+      T_rsc( ctx->status, RTEMS_INVALID_NAME );
+      T_eq_u32( ctx->id_value, 0xffffffff );
+      break;
+    }
+
+    case ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvPrio: {
+      T_rsc( ctx->status, RTEMS_INVALID_PRIORITY );
+      T_eq_u32( ctx->id_value, 0xffffffff );
+      break;
+    }
+
+    case ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvSize: {
+      T_rsc( ctx->status, RTEMS_INVALID_SIZE );
+      T_eq_u32( ctx->id_value, 0xffffffff );
+      break;
+    }
+
+    case ReqRtemsTasksCreateFromConfigErrors_Post_Status_TooMany: {
+      T_rsc( ctx->status, RTEMS_TOO_MANY );
+      T_eq_u32( ctx->id_value, 0xffffffff );
+      break;
+    }
+
+    case ReqRtemsTasksCreateFromConfigErrors_Post_Status_Unsatisfied: {
+      T_rsc( ctx->status, RTEMS_UNSATISFIED  );
+      T_eq_u32( ctx->id_value, 0xffffffff );
+      break;
+    }
+
+    case ReqRtemsTasksCreateFromConfigErrors_Post_Status_NA:
+      break;
+  }
+}
+
+static void ReqRtemsTasksCreateFromConfigErrors_Setup(
+  ReqRtemsTasksCreateFromConfigErrors_Context *ctx
+)
+{
+  rtems_status_code sc;
+  int var;
+
+  var = tls_variable;
+  RTEMS_OBFUSCATE_VARIABLE( var );
+  tls_variable = var;
+
+  sc = rtems_extension_create(
+    rtems_build_name( 'T', 'C', 'F', 'C' ),
+    &extensions,
+    &ctx->extension_id
+  );
+  T_rsc_success( sc );
+
+  _Chain_Initialize_empty( &ctx->tasks );
+}
+
+static void ReqRtemsTasksCreateFromConfigErrors_Setup_Wrap( void *arg )
+{
+  ReqRtemsTasksCreateFromConfigErrors_Context *ctx;
+
+  ctx = arg;
+  ctx->in_action_loop = false;
+  ReqRtemsTasksCreateFromConfigErrors_Setup( ctx );
+}
+
+static void ReqRtemsTasksCreateFromConfigErrors_Teardown(
+  ReqRtemsTasksCreateFromConfigErrors_Context *ctx
+)
+{
+  rtems_status_code sc;
+
+  sc = rtems_extension_delete( ctx->extension_id );
+  T_rsc_success( sc );
+}
+
+static void ReqRtemsTasksCreateFromConfigErrors_Teardown_Wrap( void *arg )
+{
+  ReqRtemsTasksCreateFromConfigErrors_Context *ctx;
+
+  ctx = arg;
+  ctx->in_action_loop = false;
+  ReqRtemsTasksCreateFromConfigErrors_Teardown( ctx );
+}
+
+static size_t ReqRtemsTasksCreateFromConfigErrors_Scope(
+  void  *arg,
+  char  *buf,
+  size_t n
+)
+{
+  ReqRtemsTasksCreateFromConfigErrors_Context *ctx;
+
+  ctx = arg;
+
+  if ( ctx->in_action_loop ) {
+    return T_get_scope(
+      ReqRtemsTasksCreateFromConfigErrors_PreDesc,
+      buf,
+      n,
+      ctx->pcs
+    );
+  }
+
+  return 0;
+}
+
+static T_fixture ReqRtemsTasksCreateFromConfigErrors_Fixture = {
+  .setup = ReqRtemsTasksCreateFromConfigErrors_Setup_Wrap,
+  .stop = NULL,
+  .teardown = ReqRtemsTasksCreateFromConfigErrors_Teardown_Wrap,
+  .scope = ReqRtemsTasksCreateFromConfigErrors_Scope,
+  .initial_context = &ReqRtemsTasksCreateFromConfigErrors_Instance
+};
+
+static const uint8_t ReqRtemsTasksCreateFromConfigErrors_TransitionMap[][ 1 ] = {
+  {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_Ok
+  }, {
+#if defined(RTEMS_SMP)
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_Unsatisfied
+#else
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_Ok
+#endif
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_Unsatisfied
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_Unsatisfied
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvSize
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvSize
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvSize
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvSize
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvSize
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvSize
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvSize
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvSize
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvSize
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvSize
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvSize
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvSize
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_TooMany
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_TooMany
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_TooMany
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_TooMany
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_TooMany
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_TooMany
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_TooMany
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_TooMany
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_TooMany
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_TooMany
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_TooMany
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_TooMany
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_TooMany
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_TooMany
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_TooMany
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_TooMany
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvPrio
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvPrio
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvPrio
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvPrio
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvPrio
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvPrio
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvPrio
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvPrio
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvPrio
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvPrio
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvPrio
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvPrio
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvPrio
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvPrio
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvPrio
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvPrio
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvPrio
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvPrio
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvPrio
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvPrio
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvPrio
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvPrio
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvPrio
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvPrio
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvPrio
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvPrio
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvPrio
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvPrio
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvPrio
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvPrio
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvPrio
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvPrio
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvPrio
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvPrio
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvPrio
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvPrio
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvPrio
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvPrio
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvPrio
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvPrio
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvPrio
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvPrio
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvPrio
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvPrio
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvPrio
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvPrio
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvPrio
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvPrio
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvPrio
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvPrio
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvPrio
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvPrio
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvPrio
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvPrio
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvPrio
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvPrio
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvPrio
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvPrio
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvPrio
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvPrio
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvPrio
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvPrio
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvPrio
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvPrio
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvName
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvName
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvName
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvName
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvName
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvName
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvName
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvName
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvName
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvName
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvName
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvName
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvName
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvName
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvName
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvName
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvName
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvName
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvName
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvName
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvName
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvName
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvName
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvName
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvName
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvName
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvName
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvName
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvName
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvName
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvName
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvName
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvName
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvName
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvName
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvName
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvName
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvName
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvName
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvName
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvName
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvName
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvName
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvName
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvName
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvName
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvName
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvName
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvName
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvName
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvName
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvName
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvName
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvName
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvName
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvName
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvName
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvName
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvName
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvName
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvName
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvName
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvName
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvName
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvName
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvName
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvName
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvName
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvName
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvName
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvName
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvName
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvName
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvName
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvName
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvName
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvName
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvName
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvName
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvName
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvName
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvName
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvName
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvName
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvName
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvName
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvName
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvName
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvName
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvName
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvName
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvName
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvName
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvName
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvName
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvName
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }, {
+    ReqRtemsTasksCreateFromConfigErrors_Post_Status_InvAddress
+  }
+};
+
+static const struct {
+  uint16_t Skip : 1;
+  uint16_t Pre_Id_NA : 1;
+  uint16_t Pre_Name_NA : 1;
+  uint16_t Pre_Prio_NA : 1;
+  uint16_t Pre_Tasks_NA : 1;
+  uint16_t Pre_TLS_NA : 1;
+  uint16_t Pre_Stack_NA : 1;
+  uint16_t Pre_Ext_NA : 1;
+  uint16_t Pre_Preempt_NA : 1;
+} ReqRtemsTasksCreateFromConfigErrors_TransitionInfo[] = {
+  {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+#if defined(RTEMS_SMP)
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+#else
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+#endif
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }, {
+    0, 0, 0, 0, 0, 0, 0, 0, 0
+  }
+};
+
+static void ReqRtemsTasksCreateFromConfigErrors_Prepare(
+  ReqRtemsTasksCreateFromConfigErrors_Context *ctx
+)
+{
+  ctx->id_value = 0xffffffff;
+  memset( &ctx->config, 0, sizeof( ctx->config ) );
+}
+
+static void ReqRtemsTasksCreateFromConfigErrors_Action(
+  ReqRtemsTasksCreateFromConfigErrors_Context *ctx
+)
+{
+  ctx->config.storage_size = RTEMS_TASK_STORAGE_SIZE(
+    ctx->config.maximum_thread_local_storage_size + ctx->stack_size,
+    ctx->config.attributes
+  );
+  ctx->status = rtems_task_create_from_config( &ctx->config, ctx->id );
+}
+
+static void ReqRtemsTasksCreateFromConfigErrors_Cleanup(
+  ReqRtemsTasksCreateFromConfigErrors_Context *ctx
+)
+{
+  Chain_Node *node;
+
+  while ( ( node = _Chain_Get_unprotected( &ctx->tasks ) ) ) {
+    Objects_Control   *obj;
+    rtems_status_code  sc;
+
+    obj = (Objects_Control *) node;
+    sc = rtems_task_delete( obj->id );
+    T_quiet_rsc_success( sc );
+  }
+}
+
+/**
+ * @fn void T_case_body_ReqRtemsTasksCreateFromConfigErrors( void )
+ */
+T_TEST_CASE_FIXTURE(
+  ReqRtemsTasksCreateFromConfigErrors,
+  &ReqRtemsTasksCreateFromConfigErrors_Fixture
+)
+{
+  ReqRtemsTasksCreateFromConfigErrors_Context *ctx;
+  size_t index;
+
+  ctx = T_fixture_context();
+  ctx->in_action_loop = true;
+  index = 0;
+
+  for (
+    ctx->pcs[ 0 ] = ReqRtemsTasksCreateFromConfigErrors_Pre_Id_Id;
+    ctx->pcs[ 0 ] < ReqRtemsTasksCreateFromConfigErrors_Pre_Id_NA;
+    ++ctx->pcs[ 0 ]
+  ) {
+    if ( ReqRtemsTasksCreateFromConfigErrors_TransitionInfo[ index ].Pre_Id_NA ) {
+      ctx->pcs[ 0 ] = ReqRtemsTasksCreateFromConfigErrors_Pre_Id_NA;
+      index += ( ReqRtemsTasksCreateFromConfigErrors_Pre_Id_NA - 1 )
+        * ReqRtemsTasksCreateFromConfigErrors_Pre_Name_NA
+        * ReqRtemsTasksCreateFromConfigErrors_Pre_Prio_NA
+        * ReqRtemsTasksCreateFromConfigErrors_Pre_Tasks_NA
+        * ReqRtemsTasksCreateFromConfigErrors_Pre_TLS_NA
+        * ReqRtemsTasksCreateFromConfigErrors_Pre_Stack_NA
+        * ReqRtemsTasksCreateFromConfigErrors_Pre_Ext_NA
+        * ReqRtemsTasksCreateFromConfigErrors_Pre_Preempt_NA;
+    }
+
+    for (
+      ctx->pcs[ 1 ] = ReqRtemsTasksCreateFromConfigErrors_Pre_Name_Valid;
+      ctx->pcs[ 1 ] < ReqRtemsTasksCreateFromConfigErrors_Pre_Name_NA;
+      ++ctx->pcs[ 1 ]
+    ) {
+      if ( ReqRtemsTasksCreateFromConfigErrors_TransitionInfo[ index ].Pre_Name_NA ) {
+        ctx->pcs[ 1 ] = ReqRtemsTasksCreateFromConfigErrors_Pre_Name_NA;
+        index += ( ReqRtemsTasksCreateFromConfigErrors_Pre_Name_NA - 1 )
+          * ReqRtemsTasksCreateFromConfigErrors_Pre_Prio_NA
+          * ReqRtemsTasksCreateFromConfigErrors_Pre_Tasks_NA
+          * ReqRtemsTasksCreateFromConfigErrors_Pre_TLS_NA
+          * ReqRtemsTasksCreateFromConfigErrors_Pre_Stack_NA
+          * ReqRtemsTasksCreateFromConfigErrors_Pre_Ext_NA
+          * ReqRtemsTasksCreateFromConfigErrors_Pre_Preempt_NA;
+      }
+
+      for (
+        ctx->pcs[ 2 ] = ReqRtemsTasksCreateFromConfigErrors_Pre_Prio_Valid;
+        ctx->pcs[ 2 ] < ReqRtemsTasksCreateFromConfigErrors_Pre_Prio_NA;
+        ++ctx->pcs[ 2 ]
+      ) {
+        if ( ReqRtemsTasksCreateFromConfigErrors_TransitionInfo[ index ].Pre_Prio_NA ) {
+          ctx->pcs[ 2 ] = ReqRtemsTasksCreateFromConfigErrors_Pre_Prio_NA;
+          index += ( ReqRtemsTasksCreateFromConfigErrors_Pre_Prio_NA - 1 )
+            * ReqRtemsTasksCreateFromConfigErrors_Pre_Tasks_NA
+            * ReqRtemsTasksCreateFromConfigErrors_Pre_TLS_NA
+            * ReqRtemsTasksCreateFromConfigErrors_Pre_Stack_NA
+            * ReqRtemsTasksCreateFromConfigErrors_Pre_Ext_NA
+            * ReqRtemsTasksCreateFromConfigErrors_Pre_Preempt_NA;
+        }
+
+        for (
+          ctx->pcs[ 3 ] = ReqRtemsTasksCreateFromConfigErrors_Pre_Tasks_Avail;
+          ctx->pcs[ 3 ] < ReqRtemsTasksCreateFromConfigErrors_Pre_Tasks_NA;
+          ++ctx->pcs[ 3 ]
+        ) {
+          if ( ReqRtemsTasksCreateFromConfigErrors_TransitionInfo[ index ].Pre_Tasks_NA ) {
+            ctx->pcs[ 3 ] = ReqRtemsTasksCreateFromConfigErrors_Pre_Tasks_NA;
+            index += ( ReqRtemsTasksCreateFromConfigErrors_Pre_Tasks_NA - 1 )
+              * ReqRtemsTasksCreateFromConfigErrors_Pre_TLS_NA
+              * ReqRtemsTasksCreateFromConfigErrors_Pre_Stack_NA
+              * ReqRtemsTasksCreateFromConfigErrors_Pre_Ext_NA
+              * ReqRtemsTasksCreateFromConfigErrors_Pre_Preempt_NA;
+          }
+
+          for (
+            ctx->pcs[ 4 ] = ReqRtemsTasksCreateFromConfigErrors_Pre_TLS_Enough;
+            ctx->pcs[ 4 ] < ReqRtemsTasksCreateFromConfigErrors_Pre_TLS_NA;
+            ++ctx->pcs[ 4 ]
+          ) {
+            if ( ReqRtemsTasksCreateFromConfigErrors_TransitionInfo[ index ].Pre_TLS_NA ) {
+              ctx->pcs[ 4 ] = ReqRtemsTasksCreateFromConfigErrors_Pre_TLS_NA;
+              index += ( ReqRtemsTasksCreateFromConfigErrors_Pre_TLS_NA - 1 )
+                * ReqRtemsTasksCreateFromConfigErrors_Pre_Stack_NA
+                * ReqRtemsTasksCreateFromConfigErrors_Pre_Ext_NA
+                * ReqRtemsTasksCreateFromConfigErrors_Pre_Preempt_NA;
+            }
+
+            for (
+              ctx->pcs[ 5 ] = ReqRtemsTasksCreateFromConfigErrors_Pre_Stack_Enough;
+              ctx->pcs[ 5 ] < ReqRtemsTasksCreateFromConfigErrors_Pre_Stack_NA;
+              ++ctx->pcs[ 5 ]
+            ) {
+              if ( ReqRtemsTasksCreateFromConfigErrors_TransitionInfo[ index ].Pre_Stack_NA ) {
+                ctx->pcs[ 5 ] = ReqRtemsTasksCreateFromConfigErrors_Pre_Stack_NA;
+                index += ( ReqRtemsTasksCreateFromConfigErrors_Pre_Stack_NA - 1 )
+                  * ReqRtemsTasksCreateFromConfigErrors_Pre_Ext_NA
+                  * ReqRtemsTasksCreateFromConfigErrors_Pre_Preempt_NA;
+              }
+
+              for (
+                ctx->pcs[ 6 ] = ReqRtemsTasksCreateFromConfigErrors_Pre_Ext_Ok;
+                ctx->pcs[ 6 ] < ReqRtemsTasksCreateFromConfigErrors_Pre_Ext_NA;
+                ++ctx->pcs[ 6 ]
+              ) {
+                if ( ReqRtemsTasksCreateFromConfigErrors_TransitionInfo[ index ].Pre_Ext_NA ) {
+                  ctx->pcs[ 6 ] = ReqRtemsTasksCreateFromConfigErrors_Pre_Ext_NA;
+                  index += ( ReqRtemsTasksCreateFromConfigErrors_Pre_Ext_NA - 1 )
+                    * ReqRtemsTasksCreateFromConfigErrors_Pre_Preempt_NA;
+                }
+
+                for (
+                  ctx->pcs[ 7 ] = ReqRtemsTasksCreateFromConfigErrors_Pre_Preempt_Yes;
+                  ctx->pcs[ 7 ] < ReqRtemsTasksCreateFromConfigErrors_Pre_Preempt_NA;
+                  ++ctx->pcs[ 7 ]
+                ) {
+                  if ( ReqRtemsTasksCreateFromConfigErrors_TransitionInfo[ index ].Pre_Preempt_NA ) {
+                    ctx->pcs[ 7 ] = ReqRtemsTasksCreateFromConfigErrors_Pre_Preempt_NA;
+                    index += ( ReqRtemsTasksCreateFromConfigErrors_Pre_Preempt_NA - 1 );
+                  }
+
+                  if ( ReqRtemsTasksCreateFromConfigErrors_TransitionInfo[ index ].Skip ) {
+                    ++index;
+                    continue;
+                  }
+
+                  ReqRtemsTasksCreateFromConfigErrors_Prepare( ctx );
+                  ReqRtemsTasksCreateFromConfigErrors_Pre_Id_Prepare(
+                    ctx,
+                    ctx->pcs[ 0 ]
+                  );
+                  ReqRtemsTasksCreateFromConfigErrors_Pre_Name_Prepare(
+                    ctx,
+                    ctx->pcs[ 1 ]
+                  );
+                  ReqRtemsTasksCreateFromConfigErrors_Pre_Prio_Prepare(
+                    ctx,
+                    ctx->pcs[ 2 ]
+                  );
+                  ReqRtemsTasksCreateFromConfigErrors_Pre_Tasks_Prepare(
+                    ctx,
+                    ctx->pcs[ 3 ]
+                  );
+                  ReqRtemsTasksCreateFromConfigErrors_Pre_TLS_Prepare(
+                    ctx,
+                    ctx->pcs[ 4 ]
+                  );
+                  ReqRtemsTasksCreateFromConfigErrors_Pre_Stack_Prepare(
+                    ctx,
+                    ctx->pcs[ 5 ]
+                  );
+                  ReqRtemsTasksCreateFromConfigErrors_Pre_Ext_Prepare(
+                    ctx,
+                    ctx->pcs[ 6 ]
+                  );
+                  ReqRtemsTasksCreateFromConfigErrors_Pre_Preempt_Prepare(
+                    ctx,
+                    ctx->pcs[ 7 ]
+                  );
+                  ReqRtemsTasksCreateFromConfigErrors_Action( ctx );
+                  ReqRtemsTasksCreateFromConfigErrors_Post_Status_Check(
+                    ctx,
+                    ReqRtemsTasksCreateFromConfigErrors_TransitionMap[ index ][ 0 ]
+                  );
+                  ReqRtemsTasksCreateFromConfigErrors_Cleanup( ctx );
+                  ++index;
+                }
+              }
+            }
+          }
+        }
+      }
+    }
+  }
+}
+
+/** @} */
-- 
2.26.2



More information about the devel mailing list