Files
sing-box/experimental/libbox/debug.go
2026-04-10 16:24:28 +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
})
}