sing-box/experimental/libbox/debug.go
2026-07-09 11:17:49 +08:00

13 lines
165 B
Go

package libbox
import (
"time"
"unsafe"
)
func TriggerGoPanic() {
time.AfterFunc(200*time.Millisecond, func() {
*(*int)(unsafe.Pointer(uintptr(0))) = 0
})
}