Remove timeoutWait due to improved scheduler handling

This commit is contained in:
Derek Parker
2014-11-26 20:45:29 -06:00
parent 16392ce609
commit afa3a9cc6c
3 changed files with 3 additions and 61 deletions

View File

@ -170,7 +170,7 @@ func (thread *ThreadContext) Step() (err error) {
return fmt.Errorf("step failed: %s", err.Error())
}
_, _, err = timeoutWait(thread, 0)
_, _, err = wait(thread.Id, 0)
if err != nil {
return err
}