Merge all upstream changes

This commit is contained in:
glebarez
2023-01-28 20:44:52 +07:00
parent 4143dc8465
commit b8c64c30ab
15 changed files with 791 additions and 67 deletions

View File

@@ -2,9 +2,18 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
//go:build !freebsd
// +build !freebsd
//go:build freebsd
// +build freebsd
package sqlite // import "modernc.org/sqlite"
func setMaxOpenFiles(n int) error { return nil }
import (
"golang.org/x/sys/unix"
)
func setMaxOpenFiles(n int64) error {
var rLimit unix.Rlimit
rLimit.Max = n
rLimit.Cur = n
return unix.Setrlimit(unix.RLIMIT_NOFILE, &rLimit)
}