func runtime.Stack

8 uses

	runtime (current package)
		mprof.go#L803: func Stack(buf []byte, all bool) int {

	runtime/debug
		stack.go#L24: 		n := runtime.Stack(buf, false)

	runtime/pprof
		pprof.go#L693: 		n := runtime.Stack(buf, true)

	net/http
		h2_bundle.go#L2911: 	b = b[:runtime.Stack(b, false)]
		h2_bundle.go#L5716: 				buf = buf[:runtime.Stack(buf, false)]
		server.go#L1824: 			buf = buf[:runtime.Stack(buf, false)]

	src.elv.sh/pkg/eval
		builtin_fn_debug.go#L91: 	for runtime.Stack(buf, true) == cap(buf) {

	src.elv.sh/pkg/sys
		dumpstack.go#L10: 		n := runtime.Stack(buf, true)