11 lines
206 B
Go
11 lines
206 B
Go
package native
|
|
|
|
import (
|
|
"fmt"
|
|
"github.com/go-delve/delve/pkg/proc"
|
|
)
|
|
|
|
func (t *nativeThread) restoreRegisters(savedRegs proc.Registers) error {
|
|
return fmt.Errorf("restore regs not supported on i386")
|
|
}
|