github.com/twelsh-aw/go/src@v0.0.0-20230516233729-a56fe86a7c81/internal/syscall/unix/at_sysnum_freebsd.go (about)

     1  // Copyright 2018 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  package unix
     6  
     7  import "syscall"
     8  
     9  const (
    10  	AT_REMOVEDIR        = 0x800
    11  	AT_SYMLINK_NOFOLLOW = 0x200
    12  
    13  	UTIME_OMIT = -0x2
    14  
    15  	unlinkatTrap       uintptr = syscall.SYS_UNLINKAT
    16  	openatTrap         uintptr = syscall.SYS_OPENAT
    17  	posixFallocateTrap uintptr = syscall.SYS_POSIX_FALLOCATE
    18  )