![dependabot[bot]](/assets/img/avatar_default.png)
Bumps the golang group with 1 update in the / directory: [github.com/onsi/ginkgo/v2](https://github.com/onsi/ginkgo). Updates `github.com/onsi/ginkgo/v2` from 2.22.0 to 2.22.2 - [Release notes](https://github.com/onsi/ginkgo/releases) - [Changelog](https://github.com/onsi/ginkgo/blob/master/CHANGELOG.md) - [Commits](https://github.com/onsi/ginkgo/compare/v2.22.0...v2.22.2) Updates `github.com/onsi/gomega` from 1.36.0 to 1.36.2 - [Release notes](https://github.com/onsi/gomega/releases) - [Changelog](https://github.com/onsi/gomega/blob/master/CHANGELOG.md) - [Commits](https://github.com/onsi/gomega/compare/v1.36.0...v1.36.2) Updates `golang.org/x/sys` from 0.27.0 to 0.28.0 - [Commits](https://github.com/golang/sys/compare/v0.27.0...v0.28.0) --- updated-dependencies: - dependency-name: github.com/onsi/ginkgo/v2 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: golang - dependency-name: github.com/onsi/gomega dependency-type: direct:production update-type: version-update:semver-patch dependency-group: golang - dependency-name: golang.org/x/sys dependency-type: direct:production update-type: version-update:semver-minor dependency-group: golang ... Signed-off-by: dependabot[bot] <support@github.com>
35 lines
1.5 KiB
Go
35 lines
1.5 KiB
Go
// Copyright 2024 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 impl
|
|
|
|
// There is no additional data as we're not running under race detector.
|
|
type RaceDetectHookData struct{}
|
|
|
|
// Empty stubs for when not using the race detector. Calls to these from index.go should be optimized away.
|
|
func (presence) raceDetectHookPresent(num uint32) {}
|
|
func (presence) raceDetectHookSetPresent(num uint32, size presenceSize) {}
|
|
func (presence) raceDetectHookClearPresent(num uint32) {}
|
|
func (presence) raceDetectHookAllocAndCopy(src presence) {}
|
|
|
|
// raceDetectHookPresent is called by the generated file interface
|
|
// (*proto.internalFuncs) Present to optionally read an unprotected
|
|
// shadow bitmap when race detection is enabled. In regular code it is
|
|
// a noop.
|
|
func raceDetectHookPresent(field *uint32, num uint32) {}
|
|
|
|
// raceDetectHookSetPresent is called by the generated file interface
|
|
// (*proto.internalFuncs) SetPresent to optionally write an unprotected
|
|
// shadow bitmap when race detection is enabled. In regular code it is
|
|
// a noop.
|
|
func raceDetectHookSetPresent(field *uint32, num uint32, size presenceSize) {}
|
|
|
|
// raceDetectHookClearPresent is called by the generated file interface
|
|
// (*proto.internalFuncs) ClearPresent to optionally write an unprotected
|
|
// shadow bitmap when race detection is enabled. In regular code it is
|
|
// a noop.
|
|
func raceDetectHookClearPresent(field *uint32, num uint32) {}
|