summaryrefslogblamecommitdiffstats
path: root/cpukit/score/src/watchdogadjust.c
blob: 04fc1a55a7703e1f75a5171b957c75a62e6c2474 (plain) (tree)
1
2
3
4
5
6
7
8
9

         
  




                          
                            
                                                    


                                                           
                                         

   



                   
                                     

                                  
 
                               
                            
                          

 
                                
 
                                             
 
                                        


                                                        
                                             


                              
                            


                          
                                
 
                                             
 
                                                        
                                                        
 





                                          
 
                                                 
 
                                 
 
                                                 

     
 
                                             
 
/**
 *  @file
 *
 *  @brief Watchdog Adjust
 *  @ingroup ScoreWatchdog
 */

/*
 *  COPYRIGHT (c) 1989-1999.
 *  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.org/license/LICENSE.
 */

#if HAVE_CONFIG_H
#include "config.h"
#endif

#include <rtems/score/watchdogimpl.h>
#include <rtems/score/chainimpl.h>
#include <rtems/score/isrlevel.h>

void _Watchdog_Adjust_backward(
  Watchdog_Header   *header,
  Watchdog_Interval  units
)
{
  ISR_lock_Context lock_context;

  _Watchdog_Acquire( header, &lock_context );

  if ( !_Watchdog_Is_empty( header ) ) {
     _Watchdog_First( header )->delta_interval += units;
  }

  _Watchdog_Release( header, &lock_context );
}

void _Watchdog_Adjust_forward(
  Watchdog_Header   *header,
  Watchdog_Interval  units
)
{
  ISR_lock_Context lock_context;

  _Watchdog_Acquire( header, &lock_context );

  while ( !_Watchdog_Is_empty( header ) && units > 0 ) {
    Watchdog_Control *first = _Watchdog_First( header );

    if ( units < first->delta_interval ) {
      first->delta_interval -= units;
      break;
    } else {
      units -= first->delta_interval;
      first->delta_interval = 1;

      _Watchdog_Release( header, &lock_context );

      _Watchdog_Tickle( header );

      _Watchdog_Acquire( header, &lock_context );
    }
  }

  _Watchdog_Release( header, &lock_context );
}