()
| 3816 | } |
| 3817 | |
| 3818 | func (d *integrationDaemon) waitForExit() error { |
| 3819 | d.mu.Lock() |
| 3820 | done := d.done |
| 3821 | d.mu.Unlock() |
| 3822 | if done == nil { |
| 3823 | return nil |
| 3824 | } |
| 3825 | return <-done |
| 3826 | } |
| 3827 | |
| 3828 | func (d *integrationDaemon) bridgeService() *integrationBridgeService { |
| 3829 | d.mu.Lock() |
no outgoing calls
no test coverage detected