1 /* 2 * SPDX-FileCopyrightText: 2015-2021 Espressif Systems (Shanghai) CO LTD 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 * 6 * This is a STUB FILE used when compiling ESP-IDF to run tests on the host system. 7 * The source file used normally for ESP-IDF has the same name but is located elsewhere. 8 */ 9 #include "sys/lock.h" 10 _lock_acquire(_lock_t * lock)11void _lock_acquire(_lock_t *lock) 12 { 13 return; 14 } 15 _lock_close(_lock_t * lock)16void _lock_close(_lock_t *lock) 17 { 18 return; 19 } 20 _lock_init(_lock_t * lock)21void _lock_init(_lock_t *lock) 22 { 23 return; 24 } 25 _lock_release(_lock_t * lock)26void _lock_release(_lock_t *lock) 27 { 28 return; 29 } 30