delve/pkg/proc/internal/ebpf/helpers_disabled.go
Derek Parker 1b2f7f0051
pkg/proc: Parse Goroutine ID in eBPF tracer (#2654)
This patch enables the eBPF tracer backend to parse the ID of the
Goroutine which hit the uprobe. This implementation is specific to AMD64
and will have to be generalized further in order to be used on other
architectures.
2021-08-24 14:53:27 +02:00

40 lines
802 B
Go

//go:build !ebpf
// +build !ebpf
package ebpf
import (
"errors"
)
type EBPFContext struct {
}
func (ctx *EBPFContext) Close() {
}
func (ctx *EBPFContext) AttachUprobe(pid int, name string, offset uint32) error {
return errors.New("eBPF is disabled")
}
func (ctx *EBPFContext) UpdateArgMap(key uint64, goidOffset int64, args []UProbeArgMap, gAddrOffset uint64) error {
return errors.New("eBPF is disabled")
}
func (ctx *EBPFContext) GetBufferedTracepoints() []RawUProbeParams {
return nil
}
func SymbolToOffset(file, symbol string) (uint32, error) {
return 0, errors.New("eBPF disabled")
}
func LoadEBPFTracingProgram() (*EBPFContext, error) {
return nil, errors.New("eBPF disabled")
}
func ParseFunctionParameterList(rawParamBytes []byte) RawUProbeParams {
return RawUProbeParams{}
}