etcd/pkg/test_util.go
2014-09-25 10:40:40 -07:00

15 lines
272 B
Go

package pkg
import (
"runtime"
)
// WARNING: This is a hack.
// Remove this when we are able to block/check the status of the go-routines.
func ForceGosched() {
// possibility enough to sched upto 10 go routines.
for i := 0; i < 10000; i++ {
runtime.Gosched()
}
}