Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions mlock/mlock_unavail.go
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
// Copyright IBM Corp. 2020, 2025
// SPDX-License-Identifier: MPL-2.0

//go:build darwin || nacl || netbsd || plan9 || windows || js
// +build darwin nacl netbsd plan9 windows js
//go:build !aix && !dragonfly && !freebsd && !linux && !openbsd && !solaris
// +build !aix,!dragonfly,!freebsd,!linux,!openbsd,!solaris

package mlock

Expand Down
3 changes: 2 additions & 1 deletion mlock/mlock_unix.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
// Copyright IBM Corp. 2020, 2025
// SPDX-License-Identifier: MPL-2.0

// +build dragonfly freebsd linux openbsd solaris
//go:build aix || dragonfly || freebsd || linux || openbsd || solaris
// +build aix dragonfly freebsd linux openbsd solaris

package mlock

Expand Down