Files
esp-idf/components/log/src/linux/log_lock.c
T

28 lines
506 B
C
Raw Normal View History

/*
* SPDX-FileCopyrightText: 2010-2024 Espressif Systems (Shanghai) CO LTD
*
* SPDX-License-Identifier: Apache-2.0
*/
2021-05-13 17:04:31 +08:00
#include <pthread.h>
#include <assert.h>
2024-02-28 20:33:12 +02:00
#include "esp_private/log_lock.h"
2021-05-13 17:04:31 +08:00
static pthread_mutex_t mutex1 = PTHREAD_MUTEX_INITIALIZER;
void esp_log_impl_lock(void)
{
assert(pthread_mutex_lock(&mutex1) == 0);
}
bool esp_log_impl_lock_timeout(void)
{
esp_log_impl_lock();
return true;
}
void esp_log_impl_unlock(void)
{
assert(pthread_mutex_unlock(&mutex1) == 0);
}