Hotfix: Disabling param lock, not operational yet

This commit is contained in:
Lorenz Meier 2013-09-19 07:51:37 +02:00
parent 978a234d29
commit fdc4521949
1 changed files with 2 additions and 2 deletions

View File

@ -102,14 +102,14 @@ static sem_t param_sem = { .semcount = 1 };
static void
param_lock(void)
{
do {} while (sem_wait(&param_sem) != 0);
//do {} while (sem_wait(&param_sem) != 0);
}
/** unlock the parameter store */
static void
param_unlock(void)
{
sem_post(&param_sem);
//sem_post(&param_sem);
}
/** assert that the parameter store is locked */