proc: Remove unused code

This commit is contained in:
aarzilli
2018-01-20 16:29:18 +01:00
committed by Derek Parker
parent 91fdc5202d
commit 74d330a013
4 changed files with 2 additions and 18 deletions

View File

@ -360,12 +360,6 @@ func (scope *EvalScope) PtrSize() int {
return scope.BinInfo.Arch.PtrSize()
}
// ChanRecvBlocked returns whether the goroutine is blocked on
// a channel read operation.
func (g *G) ChanRecvBlocked() bool {
return (g.Thread == nil) && (g.WaitReason == chanRecv)
}
// NoGError returned when a G could not be found
// for a specific thread.
type NoGError struct {