mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2025-11-01 08:32:29 -05:00
[chore] Bump database dependencies (#1164)
github.com/uptrace/bun v1.1.8 -> v1.1.9 github.com/uptrace/bun/pgdialect v1.1.8 -> v1.1.9 github.com/uptrace/bun/sqlitedialect v1.1.8 -> v1.1.9 modernc.org/sqlite v1.18.2 -> v1.19.5
This commit is contained in:
parent
fe39d50e09
commit
daf44ac2b7
529 changed files with 971879 additions and 1370194 deletions
8
vendor/modernc.org/libc/pthread.go
generated
vendored
8
vendor/modernc.org/libc/pthread.go
generated
vendored
|
|
@ -87,6 +87,14 @@ func (d *pthreadData) init(t *TLS, detached bool) {
|
|||
threads[t.ID] = t
|
||||
}
|
||||
|
||||
func (d *pthreadData) close(t *TLS) {
|
||||
threadsMu.Lock()
|
||||
|
||||
defer threadsMu.Unlock()
|
||||
|
||||
delete(threads, t.ID)
|
||||
}
|
||||
|
||||
// int pthread_attr_destroy(pthread_attr_t *attr);
|
||||
func Xpthread_attr_destroy(t *TLS, pAttr uintptr) int32 {
|
||||
return 0
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue