Rename: s/ThreadContext/Thread/

This commit is contained in:
Derek Parker
2015-06-12 14:51:23 -05:00
parent bfca6114d4
commit e5233e7262
15 changed files with 83 additions and 83 deletions

View File

@ -14,7 +14,7 @@ type stackLocation struct {
// Takes an offset from RSP and returns the address of the
// instruction the currect function is going to return to.
func (thread *ThreadContext) ReturnAddress() (uint64, error) {
func (thread *Thread) ReturnAddress() (uint64, error) {
regs, err := thread.Registers()
if err != nil {
return 0, err