forked from vlasky/sqlite-vec
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.valgrind.supp
More file actions
89 lines (80 loc) · 1.31 KB
/
.valgrind.supp
File metadata and controls
89 lines (80 loc) · 1.31 KB
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
78
79
80
81
82
83
84
85
86
87
88
89
# Valgrind suppressions for sqlite-vec
#
# These suppressions filter out known issues in SQLite internals
# so we can focus on actual memory leaks in sqlite-vec code.
# SQLite memory allocator internals (memsys5, etc.)
{
SQLite-MemSys-Reachable
Memcheck:Leak
match-leak-kinds: reachable
...
fun:sqlite3_*
...
}
# SQLite mutex/threading internals
{
SQLite-Mutex-Uninit
Memcheck:Cond
...
fun:*sqlite3*Mutex*
...
}
# SQLite parser/tokenizer
{
SQLite-Parser-Uninit
Memcheck:Cond
...
fun:sqlite3*Parse*
...
}
# SQLite VDBE engine
{
SQLite-VDBE-Uninit
Memcheck:Cond
...
fun:sqlite3VdbeExec
...
}
# SQLite B-tree operations
{
SQLite-Btree-Uninit
Memcheck:Cond
...
fun:sqlite3Btree*
...
}
# SQLite pager
{
SQLite-Pager-Uninit
Memcheck:Cond
...
fun:sqlite3Pager*
...
}
# SQLite virtual table cursor operations (common in extensions)
{
SQLite-VTab-Reachable
Memcheck:Leak
match-leak-kinds: reachable
...
fun:sqlite3_vtab_*
...
}
# glibc dlopen internals (when loading extensions)
{
Glibc-DLOpen-Reachable
Memcheck:Leak
match-leak-kinds: reachable
...
fun:dlopen*
...
}
# glibc thread-local storage
{
Glibc-TLS-Reachable
Memcheck:Leak
match-leak-kinds: reachable
...
fun:__tls_get_addr
...
}