-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathvalgrind.supp
More file actions
37 lines (34 loc) · 793 Bytes
/
Copy pathvalgrind.supp
File metadata and controls
37 lines (34 loc) · 793 Bytes
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
# Valgrind suppressions for LanceDB C bindings
# These suppress known false positives from Rust runtime and system libraries
# Suppress tokio:runtime allocations (possibly lost)
{
tokio_runtime_possibly_lost
Memcheck:Leak
match-leak-kinds: possible
fun:*alloc
...
fun:*tokio*runtime*
...
obj:*/liblancedb.so
}
# Suppress regex_automata allocations (possibly lost)
{
regex_automata_cache_possibly_lost
Memcheck:Leak
match-leak-kinds: possible
fun:malloc
...
fun:*regex_automata*
...
obj:*/liblancedb.so
}
# known glibc internal allocation in the DNS resolver
{
glibc-resolver-cache
Memcheck:Leak
match-leak-kinds: definite
fun:malloc
fun:__libc_alloc_buffer_allocate
fun:alloc_buffer_allocate
fun:__resolv_conf_allocate
}