platform: Add OOM Report & Crash Report

This commit is contained in:
世界
2026-04-02 16:39:34 +08:00
parent 0155352ff1
commit 26ddb928d9
32 changed files with 2488 additions and 600 deletions
+9
View File
@@ -0,0 +1,9 @@
package libbox
import "time"
func TriggerGoPanic() {
time.AfterFunc(200*time.Millisecond, func() {
panic("debug go crash")
})
}