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