mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2024-11-01 15:00:00 +00:00
07727753b9
* Add whereNotEmptyAndNotNull * Add GetRemoteOlderThanDays * Add GetRemoteOlderThanDays * Add PruneRemote to Manager interface * Start implementing PruneRemote * add new attachment + status to tests * fix up and test GetRemoteOlderThan * fix bad import * PruneRemote: return number pruned * add Cached column to mediaattachment * update + test pruneRemote * update mediaTest * use Cached column * upstep bun to latest version * embed structs in mediaAttachment * migrate mediaAttachment to new format * don't default cached to true * select only remote media * update db dependencies * step bun back to last working version * update pruneRemote to use Cached field * fix storage path of test attachments * add recache logic to manager * fix trimmed aspect ratio * test prune and recache * return errwithcode * tidy up different paths for emoji vs attachment * fix incorrect thumbnail type being stored * expose TransportController to media processor * implement tee-ing recached content * add thoughts of dog to test fedi attachments * test get remote files * add comment on PruneRemote * add postData cleanup to recache * test thumbnail fetching * add incredible diagram * go mod tidy * buffer pipes for recache streaming * test for client stops reading after 1kb * add media-remote-cache-days to config * add cron package * wrap logrus so it's available to cron * start and stop cron jobs gracefully
45 lines
1.4 KiB
Go
45 lines
1.4 KiB
Go
// Copyright 2021 The Libc 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 && !openbsd
|
|
// +build !freebsd,!openbsd
|
|
|
|
package libc // import "modernc.org/libc"
|
|
|
|
import (
|
|
"unsafe"
|
|
|
|
"modernc.org/libc/pthread"
|
|
)
|
|
|
|
// int pthread_attr_init(pthread_attr_t *attr);
|
|
func Xpthread_attr_init(t *TLS, pAttr uintptr) int32 {
|
|
*(*pthread.Pthread_attr_t)(unsafe.Pointer(pAttr)) = pthread.Pthread_attr_t{}
|
|
return 0
|
|
}
|
|
|
|
// The pthread_mutex_init() function shall initialize the mutex referenced by
|
|
// mutex with attributes specified by attr. If attr is NULL, the default mutex
|
|
// attributes are used; the effect shall be the same as passing the address of
|
|
// a default mutex attributes object. Upon successful initialization, the state
|
|
// of the mutex becomes initialized and unlocked.
|
|
//
|
|
// If successful, the pthread_mutex_destroy() and pthread_mutex_init()
|
|
// functions shall return zero; otherwise, an error number shall be returned to
|
|
// indicate the error.
|
|
//
|
|
// int pthread_mutex_init(pthread_mutex_t *restrict mutex, const pthread_mutexattr_t *restrict attr);
|
|
func Xpthread_mutex_init(t *TLS, pMutex, pAttr uintptr) int32 {
|
|
typ := pthread.PTHREAD_MUTEX_DEFAULT
|
|
if pAttr != 0 {
|
|
typ = int(X__ccgo_pthreadMutexattrGettype(t, pAttr))
|
|
}
|
|
mutexesMu.Lock()
|
|
|
|
defer mutexesMu.Unlock()
|
|
|
|
mutexes[pMutex] = newMutex(typ)
|
|
return 0
|
|
}
|