mirror of
https://gitee.com/milvus-io/milvus.git
synced 2024-12-02 03:48:37 +08:00
75da36d1aa
issue: #35626 Signed-off-by: chyezh <chyezh@outlook.com>
12 lines
155 B
Go
12 lines
155 B
Go
//go:build use_asan
|
|
// +build use_asan
|
|
|
|
package asan
|
|
|
|
// void __lsan_do_leak_check(void);
|
|
import "C"
|
|
|
|
func LsanDoLeakCheck() {
|
|
C.__lsan_do_leak_check()
|
|
}
|