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


        
                         


                                                                       

   
                            
                                                    
  

                                                           
                                         

   
                    


                   
                                
                                 
 
                 


















                                                                      
/**
 * @file
 *
 * @ingroup RTEMSScoreTOD
 *
 * @brief This source file contains the definition of ::_TOD and the
 *   implementation of _TOD_Lock(), _TOD_Unlock(), and _TOD_Is_owner().
 */

/*  COPYRIGHT (c) 1989-2014.
 *  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.
 */

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

#include <rtems/score/todimpl.h>
#include <rtems/score/apimutex.h>

TOD_Control _TOD;

static API_Mutex_Control _TOD_Mutex = API_MUTEX_INITIALIZER( "_TOD" );

void _TOD_Lock( void )
{
  _API_Mutex_Lock( &_TOD_Mutex );
}

void _TOD_Unlock( void )
{
  _API_Mutex_Unlock( &_TOD_Mutex );
}

#if defined(RTEMS_DEBUG)
bool _TOD_Is_owner( void )
{
  return _API_Mutex_Is_owner( &_TOD_Mutex );
}
#endif