mirror of
https://github.com/espressif/esp-idf
synced 2025-04-01 20:30:09 -04:00
18 lines
241 B
C
18 lines
241 B
C
#pragma once
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
typedef int _lock_t;
|
|
|
|
void _lock_acquire(_lock_t *lock);
|
|
void _lock_close(_lock_t *lock);
|
|
void _lock_init(_lock_t *lock);
|
|
void _lock_release(_lock_t *lock);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|