mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-12-28 00:49:26 -05:00
18 lines
415 B
Go
18 lines
415 B
Go
|
package utils
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
"os"
|
||
|
)
|
||
|
|
||
|
// KernelPanic prints the error and triggers a kernel panic.
|
||
|
//
|
||
|
// This function WILL cause a system crash!
|
||
|
// DO NOT call it in any code that may be covered by automatic or manual tests.
|
||
|
func KernelPanic(err error) {
|
||
|
fmt.Println(err)
|
||
|
_ = os.WriteFile("/proc/sys/kernel/sysrq", []byte("1"), 0o644)
|
||
|
_ = os.WriteFile("/proc/sysrq-trigger", []byte("c"), 0o644)
|
||
|
panic(err)
|
||
|
}
|