forked from zephyrproject-rtos/zephyr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathheap_listener.c
77 lines (60 loc) · 2.08 KB
/
heap_listener.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
/*
* Copyright (c) 2021 Nordic Semiconductor ASA
*
* SPDX-License-Identifier: Apache-2.0
*/
#include <zephyr/spinlock.h>
#include <zephyr/sys/heap_listener.h>
static struct k_spinlock heap_listener_lock;
static sys_slist_t heap_listener_list = SYS_SLIST_STATIC_INIT(&heap_listener_list);
void heap_listener_register(struct heap_listener *listener)
{
k_spinlock_key_t key = k_spin_lock(&heap_listener_lock);
sys_slist_append(&heap_listener_list, &listener->node);
k_spin_unlock(&heap_listener_lock, key);
}
void heap_listener_unregister(struct heap_listener *listener)
{
k_spinlock_key_t key = k_spin_lock(&heap_listener_lock);
sys_slist_find_and_remove(&heap_listener_list, &listener->node);
k_spin_unlock(&heap_listener_lock, key);
}
void heap_listener_notify_alloc(uintptr_t heap_id, void *mem, size_t bytes)
{
struct heap_listener *listener;
k_spinlock_key_t key = k_spin_lock(&heap_listener_lock);
SYS_SLIST_FOR_EACH_CONTAINER(&heap_listener_list, listener, node) {
if (listener->heap_id == heap_id
&& listener->alloc_cb != NULL
&& listener->event == HEAP_ALLOC) {
listener->alloc_cb(heap_id, mem, bytes);
}
}
k_spin_unlock(&heap_listener_lock, key);
}
void heap_listener_notify_free(uintptr_t heap_id, void *mem, size_t bytes)
{
struct heap_listener *listener;
k_spinlock_key_t key = k_spin_lock(&heap_listener_lock);
SYS_SLIST_FOR_EACH_CONTAINER(&heap_listener_list, listener, node) {
if (listener->heap_id == heap_id
&& listener->free_cb != NULL
&& listener->event == HEAP_FREE) {
listener->free_cb(heap_id, mem, bytes);
}
}
k_spin_unlock(&heap_listener_lock, key);
}
void heap_listener_notify_resize(uintptr_t heap_id, void *old_heap_end, void *new_heap_end)
{
struct heap_listener *listener;
k_spinlock_key_t key = k_spin_lock(&heap_listener_lock);
SYS_SLIST_FOR_EACH_CONTAINER(&heap_listener_list, listener, node) {
if (listener->heap_id == heap_id
&& listener->resize_cb != NULL
&& listener->event == HEAP_RESIZE) {
listener->resize_cb(heap_id, old_heap_end, new_heap_end);
}
}
k_spin_unlock(&heap_listener_lock, key);
}