mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2024-11-23 04:06:39 +00:00
5c17ecd93a
Bumps [golang.org/x/net](https://github.com/golang/net) from 0.17.0 to 0.18.0. - [Commits](https://github.com/golang/net/compare/v0.17.0...v0.18.0) --- updated-dependencies: - dependency-name: golang.org/x/net dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
38 lines
892 B
Go
38 lines
892 B
Go
// Copyright 2019 The Go 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 race
|
|
|
|
package socket
|
|
|
|
import (
|
|
"runtime"
|
|
"unsafe"
|
|
)
|
|
|
|
// This package reads and writes the Message buffers using a
|
|
// direct system call, which the race detector can't see.
|
|
// These functions tell the race detector what is going on during the syscall.
|
|
|
|
func (m *Message) raceRead() {
|
|
for _, b := range m.Buffers {
|
|
if len(b) > 0 {
|
|
runtime.RaceReadRange(unsafe.Pointer(&b[0]), len(b))
|
|
}
|
|
}
|
|
if b := m.OOB; len(b) > 0 {
|
|
runtime.RaceReadRange(unsafe.Pointer(&b[0]), len(b))
|
|
}
|
|
}
|
|
func (m *Message) raceWrite() {
|
|
for _, b := range m.Buffers {
|
|
if len(b) > 0 {
|
|
runtime.RaceWriteRange(unsafe.Pointer(&b[0]), len(b))
|
|
}
|
|
}
|
|
if b := m.OOB; len(b) > 0 {
|
|
runtime.RaceWriteRange(unsafe.Pointer(&b[0]), len(b))
|
|
}
|
|
}
|