pgraph: Remember to unpause the vertices!
Forgot this part earlier, sorry! Should work correctly now :)
This commit is contained in:
@@ -497,6 +497,10 @@ func (g *Graph) Start(first bool) { // start or continue
|
|||||||
defer wg.Done()
|
defer wg.Done()
|
||||||
vv.Res.Started() // block until started
|
vv.Res.Started() // block until started
|
||||||
}(v)
|
}(v)
|
||||||
|
|
||||||
|
if !first { // unpause!
|
||||||
|
v.Res.SendEvent(event.EventStart, true, false) // sync!
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
wg.Wait() // wait for everyone
|
wg.Wait() // wait for everyone
|
||||||
|
|||||||
Reference in New Issue
Block a user