From ac9d2ecc46ea40b6da0ccaeeabd16e8c19ff47e0 Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Thu, 1 Sep 2011 18:13:54 +0000 Subject: 2011-09-01 Petr Benes PR 1895/cpukit * rtems/src/ratemoncancel.c, rtems/src/ratemondelete.c, rtems/src/ratemonperiod.c, sapi/include/confdefs.h, score/Makefile.am, score/include/rtems/score/scheduler.h, score/include/rtems/score/schedulerpriority.h, score/include/rtems/score/schedulersimple.h, score/include/rtems/score/schedulersimplesmp.h, score/inline/rtems/score/scheduler.inl, score/inline/rtems/score/schedulerpriority.inl, score/src/coremutexseize.c: Add priority_compare and release_job hooks interfaces to scheduler interface. * score/src/schedulerpriorityprioritycompare.c, score/src/schedulerpriorityreleasejob.c: New files. --- cpukit/score/src/schedulerpriorityreleasejob.c | 27 ++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 cpukit/score/src/schedulerpriorityreleasejob.c (limited to 'cpukit/score/src/schedulerpriorityreleasejob.c') diff --git a/cpukit/score/src/schedulerpriorityreleasejob.c b/cpukit/score/src/schedulerpriorityreleasejob.c new file mode 100644 index 0000000000..2ef0cafb6c --- /dev/null +++ b/cpukit/score/src/schedulerpriorityreleasejob.c @@ -0,0 +1,27 @@ +/* + * 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. + * + * $Id$ + */ + +#if HAVE_CONFIG_H +#include "config.h" +#endif + +#include +#include +#include +#include + +void _Scheduler_priority_Release_job( + Thread_Control *the_thread, + uint32_t deadline +) +{ + return; +} -- cgit v1.2.3