mirror of
https://github.com/tinygo-org/tinygo.git
synced 2026-08-19 03:54:01 +00:00
src/runtime/debug: stub debug.Stack()
This commit is contained in:
@@ -8,3 +8,10 @@ package debug
|
|||||||
func SetMaxStack(n int) int {
|
func SetMaxStack(n int) int {
|
||||||
return n
|
return n
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Stack returns a formatted stack trace of the goroutine that calls it.
|
||||||
|
//
|
||||||
|
// Not implemented.
|
||||||
|
func Stack() []byte {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user