Skip to content

Instantly share code, notes, and snippets.

@ohookins
Last active December 14, 2015 04:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ohookins/5030871 to your computer and use it in GitHub Desktop.
Save ohookins/5030871 to your computer and use it in GitHub Desktop.
Finding out user limits in Go
package main
import (
"fmt"
"syscall"
)
func main() {
r := syscall.Rlimit{}
syscall.Getrlimit(syscall.RLIMIT_NOFILE, &r)
fmt.Println("Open file current:", r.Cur)
fmt.Println("Open file maximum:", r.Max)
}
@ohookins
Copy link
Author

$ ulimit -n
2560

$ ./limit_test
Open file current: 2560
Open file maximum: 9223372036854775807

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment