(head *state)
| 341 | } |
| 342 | |
| 343 | func (r *runtime) setHead(head *state) { |
| 344 | r.stateMutex.Lock() |
| 345 | defer r.stateMutex.Unlock() |
| 346 | r.head = head |
| 347 | } |
| 348 | |
| 349 | func (r *runtime) goFunc(f func(context.Context)) { |
| 350 | r.wg.Add(1) |
no outgoing calls
no test coverage detected