[rtems commit] PR2069: Similar. Forgot to add missing file.

Gedare Bloom gedare at rtems.org
Mon Aug 6 17:49:58 UTC 2012


Module:    rtems
Branch:    master
Commit:    2aff1f08757def657fcd1794f98a5743966e80b6
Changeset: http://git.rtems.org/rtems/commit/?id=2aff1f08757def657fcd1794f98a5743966e80b6

Author:    Andreas Heinig <andreas.heinig at cs.tu-dortmund.de>
Date:      Mon Aug  6 13:53:38 2012 -0400

PR2069: Similar. Forgot to add missing file.

---

 cpukit/score/src/schedulercbsallocate.c |   38 +++++++++++++++++++++++++++++++
 1 files changed, 38 insertions(+), 0 deletions(-)

diff --git a/cpukit/score/src/schedulercbsallocate.c b/cpukit/score/src/schedulercbsallocate.c
new file mode 100644
index 0000000..226bc8a
--- /dev/null
+++ b/cpukit/score/src/schedulercbsallocate.c
@@ -0,0 +1,38 @@
+/*
+ *  Copyright (C) 2011 Petr Benes.
+ *  Copyright (C) 2011 On-Line Applications Research Corporation (OAR).
+ *
+ *  The license and distribution terms for this file may be
+ *  found in the file LICENSE in this distribution or at
+ *  http://www.rtems.com/license/LICENSE.
+ */
+
+#if HAVE_CONFIG_H
+#include "config.h"
+#endif
+
+#include <rtems/system.h>
+#include <rtems/config.h>
+#include <rtems/score/scheduler.h>
+#include <rtems/score/scheduleredf.h>
+#include <rtems/score/schedulercbs.h>
+#include <rtems/score/wkspace.h>
+
+void *_Scheduler_CBS_Allocate(
+  Thread_Control      *the_thread
+)
+{
+  void *sched;
+  Scheduler_CBS_Per_thread *schinfo;
+
+  sched = _Workspace_Allocate(sizeof(Scheduler_CBS_Per_thread));
+  if ( sched ) {
+    the_thread->scheduler_info = sched;
+    schinfo = (Scheduler_CBS_Per_thread *)(the_thread->scheduler_info);
+    schinfo->edf_per_thread.thread = the_thread;
+    schinfo->edf_per_thread.queue_state = SCHEDULER_EDF_QUEUE_STATE_NEVER_HAS_BEEN;
+    schinfo->cbs_server = NULL;
+  }
+
+  return sched;
+}




More information about the vc mailing list