1 repo
Mechanisms for traversing call stacks across runtime-specific execution contexts.
Distinguishing note: Handles concurrent execution units like goroutines, unlike standard stack walkers.
Explore 1 awesome GitHub repository matching operating systems & systems programming · Stack Unwinders. Refine with filters or upvote what's useful.
Delve is a command-line debugger designed for programs written in the Go programming language. It provides an interactive interface for runtime analysis, allowing developers to control program execution, inspect memory and variable states, and navigate call stacks to identify logic errors. The tool distinguishes itself through deep integration with the Go runtime, specifically by providing goroutine-aware stack unwinding and the ability to manage concurrent execution threads. It utilizes a client-server protocol to decouple the debugger engine from the user interface, enabling both local and
Traverses call stacks by interpreting runtime-specific metadata to track execution across concurrent units.