Full Mattermost server source with integrated Community Enterprise features. Includes vendor directory for offline/air-gapped builds. Structure: - enterprise-impl/: Enterprise feature implementations - enterprise-community/: Init files that register implementations - enterprise/: Bridge imports (community_imports.go) - vendor/: All dependencies for offline builds Build (online): go build ./cmd/mattermost Build (offline/air-gapped): go build -mod=vendor ./cmd/mattermost 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.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))
|
|
}
|
|
}
|