global_wait_group.go 193 B

123456789101112
  1. package initutils
  2. import (
  3. "sync"
  4. )
  5. var globalWaitGroup sync.WaitGroup
  6. func GlobalWaitGroupWait() { globalWaitGroup.Wait() }
  7. func GlobalWaitGroupWaitGo(f func()) {
  8. globalWaitGroup.Go(f)
  9. }