sing-box/experimental/libbox/debug.go
2026-04-28 08:04:31 +08:00

12 lines
165 B
Go

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