2024-01-17 06:16:06 +00:00
|
|
|
/*
|
|
|
|
* SPDX-FileCopyrightText: 2024 Espressif Systems (Shanghai) CO LTD
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
*/
|
|
|
|
|
2019-11-21 17:40:59 +00:00
|
|
|
#pragma once
|
2024-01-17 06:16:06 +00:00
|
|
|
|
2019-11-21 17:40:59 +00:00
|
|
|
#include <stdbool.h>
|
|
|
|
|
2024-01-17 06:16:06 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2019-11-21 17:40:59 +00:00
|
|
|
void esp_log_impl_lock(void);
|
|
|
|
bool esp_log_impl_lock_timeout(void);
|
|
|
|
void esp_log_impl_unlock(void);
|
2024-01-17 06:16:06 +00:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|