diff --git a/src/runtime/debug.go b/src/runtime/debug.go index 3dab5235..139e18bc 100644 --- a/src/runtime/debug.go +++ b/src/runtime/debug.go @@ -18,3 +18,8 @@ func NumCgoCall() int { func NumGoroutine() int { return 1 } + +// Stub for Breakpoint, does not do anything. +func Breakpoint() { + panic("Breakpoint not supported") +}