gitee.com/ks-custle/core-gm@v0.0.0-20230922171213-b83bdd97b62c/internal/syscall/unix/fcntl_linux_32bit.go (about)

     1  // Copyright 2019 The Go Authors. All rights reserved.
     2  // Use of this source code is governed by a BSD-style
     3  // license that can be found in the LICENSE file.
     4  
     5  // On 32-bit Linux systems, use SYS_FCNTL64.
     6  // If you change the build tags here, see syscall/flock_linux_32bit.go.
     7  
     8  //go:build (linux && 386) || (linux && arm) || (linux && mips) || (linux && mipsle)
     9  // +build linux,386 linux,arm linux,mips linux,mipsle
    10  
    11  package unix
    12  
    13  import "syscall"
    14  
    15  func init() {
    16  	FcntlSyscall = syscall.SYS_FCNTL64
    17  }