summaryrefslogtreecommitdiff
path: root/vendor/modernc.org/sqlite/rlimit.go
diff options
context:
space:
mode:
authorLibravatar kim (grufwub) <grufwub@gmail.com>2021-09-08 21:12:23 +0100
committerLibravatar kim (grufwub) <grufwub@gmail.com>2021-09-08 21:12:23 +0100
commit71a4f8667c63c2ffbe58eee7b5e963d3e09a42de (patch)
treed78cb33084b46cc0490b81a6422eee5207f608cc /vendor/modernc.org/sqlite/rlimit.go
parentrework media processing a little bit (#191) (diff)
downloadgotosocial-71a4f8667c63c2ffbe58eee7b5e963d3e09a42de.tar.xz
update sqlite library -> v1.13.0
Signed-off-by: kim (grufwub) <grufwub@gmail.com>
Diffstat (limited to 'vendor/modernc.org/sqlite/rlimit.go')
-rw-r--r--vendor/modernc.org/sqlite/rlimit.go10
1 files changed, 10 insertions, 0 deletions
diff --git a/vendor/modernc.org/sqlite/rlimit.go b/vendor/modernc.org/sqlite/rlimit.go
new file mode 100644
index 000000000..4a1076049
--- /dev/null
+++ b/vendor/modernc.org/sqlite/rlimit.go
@@ -0,0 +1,10 @@
+// Copyright 2021 The Sqlite Authors. All rights reserved.
+// 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
+
+package sqlite // import "modernc.org/sqlite"
+
+func setMaxOpenFiles(n int) error { return nil }