OpenCores
URL https://opencores.org/ocsvn/or1k/or1k/trunk

Subversion Repositories or1k

[/] [or1k/] [trunk/] [rtems-20020807/] [cpukit/] [score/] [src/] [threadqenqueuefifo.c] - Diff between revs 1026 and 1765

Go to most recent revision | Only display areas with differences | Details | Blame | View Log

Rev 1026 Rev 1765
/*
/*
 *  Thread Queue Handler
 *  Thread Queue Handler
 *
 *
 *
 *
 *  COPYRIGHT (c) 1989-1999.
 *  COPYRIGHT (c) 1989-1999.
 *  On-Line Applications Research Corporation (OAR).
 *  On-Line Applications Research Corporation (OAR).
 *
 *
 *  The license and distribution terms for this file may be
 *  The license and distribution terms for this file may be
 *  found in the file LICENSE in this distribution or at
 *  found in the file LICENSE in this distribution or at
 *  http://www.OARcorp.com/rtems/license.html.
 *  http://www.OARcorp.com/rtems/license.html.
 *
 *
 *  threadqenqueuefifo.c,v 1.2 1999/11/17 17:50:40 joel Exp
 *  threadqenqueuefifo.c,v 1.2 1999/11/17 17:50:40 joel Exp
 */
 */
 
 
#include <rtems/system.h>
#include <rtems/system.h>
#include <rtems/score/chain.h>
#include <rtems/score/chain.h>
#include <rtems/score/isr.h>
#include <rtems/score/isr.h>
#include <rtems/score/object.h>
#include <rtems/score/object.h>
#include <rtems/score/states.h>
#include <rtems/score/states.h>
#include <rtems/score/thread.h>
#include <rtems/score/thread.h>
#include <rtems/score/threadq.h>
#include <rtems/score/threadq.h>
#include <rtems/score/tqdata.h>
#include <rtems/score/tqdata.h>
 
 
/*PAGE
/*PAGE
 *
 *
 *  _Thread_queue_Enqueue_fifo
 *  _Thread_queue_Enqueue_fifo
 *
 *
 *  This routine blocks a thread, places it on a thread, and optionally
 *  This routine blocks a thread, places it on a thread, and optionally
 *  starts a timeout timer.
 *  starts a timeout timer.
 *
 *
 *  Input parameters:
 *  Input parameters:
 *    the_thread_queue - pointer to threadq
 *    the_thread_queue - pointer to threadq
 *    the_thread       - pointer to the thread to block
 *    the_thread       - pointer to the thread to block
 *    timeout          - interval to wait
 *    timeout          - interval to wait
 *
 *
 *  Output parameters: NONE
 *  Output parameters: NONE
 *
 *
 *  INTERRUPT LATENCY:
 *  INTERRUPT LATENCY:
 *    only case
 *    only case
 */
 */
 
 
void _Thread_queue_Enqueue_fifo (
void _Thread_queue_Enqueue_fifo (
  Thread_queue_Control *the_thread_queue,
  Thread_queue_Control *the_thread_queue,
  Thread_Control       *the_thread,
  Thread_Control       *the_thread,
  Watchdog_Interval    timeout
  Watchdog_Interval    timeout
)
)
{
{
  ISR_Level            level;
  ISR_Level            level;
  Thread_queue_States  sync_state;
  Thread_queue_States  sync_state;
 
 
  _ISR_Disable( level );
  _ISR_Disable( level );
 
 
  sync_state = the_thread_queue->sync_state;
  sync_state = the_thread_queue->sync_state;
  the_thread_queue->sync_state = THREAD_QUEUE_SYNCHRONIZED;
  the_thread_queue->sync_state = THREAD_QUEUE_SYNCHRONIZED;
 
 
  switch ( sync_state ) {
  switch ( sync_state ) {
    case THREAD_QUEUE_SYNCHRONIZED:
    case THREAD_QUEUE_SYNCHRONIZED:
      /*
      /*
       *  This should never happen.  It indicates that someone did not
       *  This should never happen.  It indicates that someone did not
       *  enter a thread queue critical section.
       *  enter a thread queue critical section.
       */
       */
      break;
      break;
 
 
    case THREAD_QUEUE_NOTHING_HAPPENED:
    case THREAD_QUEUE_NOTHING_HAPPENED:
      _Chain_Append_unprotected(
      _Chain_Append_unprotected(
        &the_thread_queue->Queues.Fifo,
        &the_thread_queue->Queues.Fifo,
        &the_thread->Object.Node
        &the_thread->Object.Node
      );
      );
      _ISR_Enable( level );
      _ISR_Enable( level );
      return;
      return;
 
 
    case THREAD_QUEUE_TIMEOUT:
    case THREAD_QUEUE_TIMEOUT:
      the_thread->Wait.return_code = the_thread->Wait.queue->timeout_status;
      the_thread->Wait.return_code = the_thread->Wait.queue->timeout_status;
      _ISR_Enable( level );
      _ISR_Enable( level );
      break;
      break;
 
 
    case THREAD_QUEUE_SATISFIED:
    case THREAD_QUEUE_SATISFIED:
      if ( _Watchdog_Is_active( &the_thread->Timer ) ) {
      if ( _Watchdog_Is_active( &the_thread->Timer ) ) {
        _Watchdog_Deactivate( &the_thread->Timer );
        _Watchdog_Deactivate( &the_thread->Timer );
        _ISR_Enable( level );
        _ISR_Enable( level );
        (void) _Watchdog_Remove( &the_thread->Timer );
        (void) _Watchdog_Remove( &the_thread->Timer );
      } else
      } else
        _ISR_Enable( level );
        _ISR_Enable( level );
      break;
      break;
  }
  }
 
 
  /*
  /*
   *  Global objects with thread queue's should not be operated on from an
   *  Global objects with thread queue's should not be operated on from an
   *  ISR.  But the sync code still must allow short timeouts to be processed
   *  ISR.  But the sync code still must allow short timeouts to be processed
   *  correctly.
   *  correctly.
   */
   */
 
 
  _Thread_Unblock( the_thread );
  _Thread_Unblock( the_thread );
 
 
#if defined(RTEMS_MULTIPROCESSING)
#if defined(RTEMS_MULTIPROCESSING)
  if ( !_Objects_Is_local_id( the_thread->Object.id ) )
  if ( !_Objects_Is_local_id( the_thread->Object.id ) )
    _Thread_MP_Free_proxy( the_thread );
    _Thread_MP_Free_proxy( the_thread );
#endif
#endif
 
 
}
}
 
 
 
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.