mirror of
https://github.com/espressif/esp-idf.git
synced 2025-08-26 18:14:11 +00:00
16 lines
279 B
C
16 lines
279 B
C
/*
|
|
* SPDX-FileCopyrightText: 2025 Espressif Systems (Shanghai) CO LTD
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <stdatomic.h>
|
|
|
|
typedef struct {
|
|
uint8_t head;
|
|
uint8_t tail;
|
|
atomic_uint_fast8_t used;
|
|
} esp_openthread_circular_queue_info_t;
|