source: rtems/cpukit/score/src/threadqextract.c @ dfbfa2b0

4.104.114.84.95
Last change on this file since dfbfa2b0 was dfbfa2b0, checked in by Joel Sherrill <joel.sherrill@…>, on 11/02/99 at 20:36:11

Split threadq.c into multiple files.

  • Property mode set to 100644
File size: 1.3 KB
Line 
1/*
2 *  Thread Queue Handler
3 *
4 *
5 *  COPYRIGHT (c) 1989-1998.
6 *  On-Line Applications Research Corporation (OAR).
7 *  Copyright assigned to U.S. Government, 1994.
8 *
9 *  The license and distribution terms for this file may be
10 *  found in the file LICENSE in this distribution or at
11 *  http://www.OARcorp.com/rtems/license.html.
12 *
13 *  $Id$
14 */
15
16#include <rtems/system.h>
17#include <rtems/score/chain.h>
18#include <rtems/score/isr.h>
19#include <rtems/score/object.h>
20#include <rtems/score/states.h>
21#include <rtems/score/thread.h>
22#include <rtems/score/threadq.h>
23#include <rtems/score/tqdata.h>
24
25/*PAGE
26 *
27 *  _Thread_queue_Extract
28 *
29 *  This routine removes a specific thread from the specified threadq,
30 *  deletes any timeout, and unblocks the thread.
31 *
32 *  Input parameters:
33 *    the_thread_queue - pointer to a threadq header
34 *    the_thread       - pointer to a thread control block
35 *
36 *  Output parameters: NONE
37 *
38 *  INTERRUPT LATENCY: NONE
39 */
40
41void _Thread_queue_Extract(
42  Thread_queue_Control *the_thread_queue,
43  Thread_Control       *the_thread
44)
45{
46  switch ( the_thread_queue->discipline ) {
47    case THREAD_QUEUE_DISCIPLINE_FIFO:
48      _Thread_queue_Extract_fifo( the_thread_queue, the_thread );
49      break;
50    case THREAD_QUEUE_DISCIPLINE_PRIORITY:
51      _Thread_queue_Extract_priority( the_thread_queue, the_thread );
52      break;
53   }
54}
55
Note: See TracBrowser for help on using the repository browser.