mirror of
https://github.com/httprunner/httprunner.git
synced 2026-05-22 08:50:13 +08:00
13 lines
190 B
Go
13 lines
190 B
Go
// +build windows
|
|
|
|
package boomer
|
|
|
|
import (
|
|
"github.com/rs/zerolog/log"
|
|
)
|
|
|
|
// set resource limit
|
|
func SetUlimit(limit uint64) {
|
|
log.Warn().Msg("windows does not support setting ulimit")
|
|
}
|