source: rtems/cpukit/score/src/schedulerpriorityprioritycompare.c @ 5472ad41

4.115
Last change on this file since 5472ad41 was ac9d2ecc, checked in by Joel Sherrill <joel.sherrill@…>, on 09/01/11 at 18:13:54

2011-09-01 Petr Benes <benesp16@…>

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.
  • Property mode set to 100644
File size: 597 bytes
Line 
1/*
2 *  COPYRIGHT (c) 2011.
3 *  On-Line Applications Research Corporation (OAR).
4 *
5 *  The license and distribution terms for this file may be
6 *  found in the file LICENSE in this distribution or at
7 *  http://www.rtems.com/license/LICENSE.
8 *
9 *  $Id$
10 */
11
12#if HAVE_CONFIG_H
13#include "config.h"
14#endif
15
16#include <rtems/system.h>
17#include <rtems/config.h>
18#include <rtems/score/chain.h>
19#include <rtems/score/schedulerpriority.h>
20
21int _Scheduler_priority_Priority_compare(
22  Priority_Control      p1,
23  Priority_Control      p2
24)
25{
26  return _Scheduler_priority_Priority_compare_body( p1, p2 );
27}
Note: See TracBrowser for help on using the repository browser.