mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2025-11-02 01:32:24 -06:00
Update dependencies (#333)
This commit is contained in:
parent
ce22e03f9d
commit
182b4eea73
848 changed files with 377869 additions and 107280 deletions
17
vendor/modernc.org/libc/sync.go
generated
vendored
Normal file
17
vendor/modernc.org/libc/sync.go
generated
vendored
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
// 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.
|
||||
|
||||
package libc // import "modernc.org/libc"
|
||||
|
||||
import (
|
||||
"sync/atomic"
|
||||
)
|
||||
|
||||
var __sync_synchronize_dummy int32
|
||||
|
||||
// __sync_synchronize();
|
||||
func X__sync_synchronize(t *TLS) {
|
||||
// Attempt to implement a full memory barrier without assembler.
|
||||
atomic.StoreInt32(&__sync_synchronize_dummy, atomic.LoadInt32(&__sync_synchronize_dummy)+1)
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue