We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ab4d016 commit b74b250Copy full SHA for b74b250
espnet/espnet.c
@@ -33,11 +33,13 @@ static bool _is_from_isr(void) {
33
return false;
34
}
35
static void * _spin_lock_create(void) {
36
- printf("called: _spin_lock_create\n");
37
- return NULL;
+ // It looks like the only thing these libraries do, is create and delete
+ // spin locks. So creating this as a stub for now.
38
+ return malloc(1);
39
40
static void _spin_lock_delete(void *lock) {
- printf("called: _spin_lock_delete\n");
41
+ // See _spin_lock_create.
42
+ free(lock);
43
44
static uint32_t _wifi_int_disable(void *wifi_int_mux) {
45
printf("called: _wifi_int_disable\n");
0 commit comments