summaryrefslogtreecommitdiffstats
path: root/cpukit/libdrvmgr/drvmgr_lock.c
blob: 5b7cbcff25a24ba75e24c0c55e1edb43da10278d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/* Driver Manager Internal locking implementation
 *
 * COPYRIGHT (c) 2009 Cobham Gaisler AB.
 *
 * 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.
 */

#include <drvmgr/drvmgr.h>
#include "drvmgr_internal.h"
#include <rtems/score/sysstate.h>

void _DRV_Manager_Lock( void )
{
  if ( !_System_state_Is_before_initialization( _System_state_Get() ) ) {
    _API_Mutex_Lock( &drvmgr.lock );
  }
}

void _DRV_Manager_Unlock(void)
{
  if ( !_System_state_Is_before_initialization( _System_state_Get() ) ) {
    _API_Mutex_Unlock( &drvmgr.lock );
  }
}