You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
go_mqtt/FullCpu.go

17 lines
173 B
Go

package main
import "time"
func test_print(a int) {
for {
}
}
func main01() {
for i := 0; i < 100; i++ {
go test_print(i)
}
time.Sleep(360000000 * time.Second)
}