source: rtems/cpukit/itron/src/rot_rdq.c @ f42b726

4.104.114.84.95
Last change on this file since f42b726 was f42b726, checked in by Joel Sherrill <joel.sherrill@…>, on 01/24/01 at 14:17:28

2001-01-24 Ralf Corsepius <corsepiu@…>

  • configure.in: Add src/config.h
  • src/Makefile.am: Add INCLUDES += -I. to pickup config.h
  • src/.cvsignore: Add config.h and stamp-h
  • src/*.c: Add config.h support.
  • Property mode set to 100644
File size: 1.1 KB
Line 
1/*
2 *  COPYRIGHT (c) 1989-1999.
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.OARcorp.com/rtems/license.html.
8 *
9 *  $Id$
10 */
11
12#if HAVE_CONFIG_H
13#include "config.h"
14#endif
15
16#include <itron.h>
17
18#include <rtems/score/thread.h>
19#include <rtems/score/userext.h>
20#include <rtems/score/wkspace.h>
21#include <rtems/score/apiext.h>
22#include <rtems/score/sysstate.h>
23
24#include <rtems/itron/task.h>
25
26/*
27 *  rot_rdq - Rotate Tasks on the Ready Queue
28 */
29
30ER rot_rdq(
31  PRI tskpri
32)
33{
34  PRI priority;
35 
36
37  if (( tskpri <= 0 ) || ( tskpri >= 256 ))
38    return E_PAR;
39
40  _Thread_Disable_dispatch();
41
42  /*
43   * Yield of processor will rotate the queue for this processor.
44   */
45
46  priority = _ITRON_Task_Core_to_Priority(_Thread_Executing->current_priority);
47  if ( priority == tskpri )
48    _Thread_Yield_processor();
49  else {
50    _Thread_Rotate_Ready_Queue( _ITRON_Task_Core_to_Priority( tskpri ) );
51  }
52  _Thread_Enable_dispatch();
53 
54  return E_OK;
55}
56
57
Note: See TracBrowser for help on using the repository browser.