修正cgroups的编译问题

This commit is contained in:
lwch
2022-08-03 18:10:38 +08:00
parent 36ce864661
commit 0b1144c0db
3 changed files with 7 additions and 2 deletions

View File

@@ -17,6 +17,8 @@ jobs:
- ubuntu-22.04
- windows-2019
- windows-2022
- macos-11
- macos-12
go:
- '1.17'
- '1.18'

View File

@@ -1,5 +1,5 @@
//go:build !windows && !aix
// +build !windows,!aix
//go:build !windows && !aix && !darwin
// +build !windows,!aix,!darwin
package limit

View File

@@ -1,3 +1,6 @@
//go:build !windows && !aix && !darwin
// +build !windows,!aix,!darwin
package limit
import (