MCPcopy Create free account
hub / github.com/imgproxy/imgproxy / callers

Function callers

errctx/context.go:93–97  ·  view source on GitHub ↗

callers returns the stack trace, skipping the specified number of frames.

(skip int)

Source from the content-addressed store, hash-verified

91
92// callers returns the stack trace, skipping the specified number of frames.
93func callers(skip int) []uintptr {
94 stack := make([]uintptr, 10)
95 n := runtime.Callers(skip+2, stack)
96 return stack[:n]
97}

Callers 1

newErrorContextFunction · 0.70

Calls 1

CallersMethod · 0.65

Tested by

no test coverage detected