chore: ⬆️ updated deps
This commit is contained in:
+17
@@ -0,0 +1,17 @@
|
||||
// Copyright 2026 The libsqlite3-go Authors. All rights reserved.
|
||||
// Use of the source code is governed by a BSD-style
|
||||
// license that can be found in the LICENSE file.
|
||||
|
||||
package sqlite3
|
||||
|
||||
import (
|
||||
"modernc.org/libc"
|
||||
)
|
||||
|
||||
func ___inline_isnanf(tls *libc.TLS, f float32) int32 {
|
||||
return libc.X__inline_isnanf(tls, f)
|
||||
}
|
||||
|
||||
func ___inline_isnan(tls *libc.TLS, f float64) int32 {
|
||||
return libc.X__inline_isnand(tls, f)
|
||||
}
|
||||
+16
@@ -0,0 +1,16 @@
|
||||
// Copyright 2026 The libsqlite3-go Authors. All rights reserved.
|
||||
// Use of the source code is governed by a BSD-style
|
||||
// license that can be found in the LICENSE file.
|
||||
|
||||
package sqlite3
|
||||
|
||||
import (
|
||||
"math/bits"
|
||||
|
||||
"modernc.org/libc"
|
||||
)
|
||||
|
||||
func ___umulh(tls *libc.TLS, a, b uint64) uint64 {
|
||||
hi, _ := bits.Mul64(a, b)
|
||||
return hi
|
||||
}
|
||||
+1
-1
@@ -253,7 +253,7 @@ func mutexTry(tls *libc.TLS, m uintptr) int32 {
|
||||
// Non-recursive mutex
|
||||
if !(*mutex)(unsafe.Pointer(m)).recursive {
|
||||
if (*mutex)(unsafe.Pointer(m)).TryLock() {
|
||||
(*mutex)(unsafe.Pointer(m)).id = tls.ID
|
||||
atomic.StoreInt32(&(*mutex)(unsafe.Pointer(m)).id, tls.ID)
|
||||
return SQLITE_OK
|
||||
}
|
||||
|
||||
|
||||
+17594
-14119
File diff suppressed because one or more lines are too long
+17599
-14121
File diff suppressed because one or more lines are too long
+16993
-13429
File diff suppressed because one or more lines are too long
+16995
-13431
File diff suppressed because one or more lines are too long
+16906
-13299
File diff suppressed because one or more lines are too long
+16836
-13229
File diff suppressed because one or more lines are too long
+16875
-13239
File diff suppressed because one or more lines are too long
+16838
-13231
File diff suppressed because one or more lines are too long
+16836
-13229
File diff suppressed because one or more lines are too long
+16838
-13231
File diff suppressed because one or more lines are too long
+16838
-13231
File diff suppressed because one or more lines are too long
+16782
-13176
File diff suppressed because one or more lines are too long
+16902
-13312
File diff suppressed because one or more lines are too long
+16903
-13314
File diff suppressed because one or more lines are too long
+17105
-13468
File diff suppressed because one or more lines are too long
+17117
-13479
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user