github.com/xingly-cn/shorturl-go@v0.0.0-20220110130535-e21de4659f74/pkg/mod/golang.org/x/sys@v0.0.0-20200323222414-85ca7c5b95cd/unix/syscall_freebsd_386.go (about)

     1  // Copyright 2009 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  // +build 386,freebsd
     6  
     7  package unix
     8  
     9  import (
    10  	"syscall"
    11  	"unsafe"
    12  )
    13  
    14  func setTimespec(sec, nsec int64) Timespec {
    15  	return Timespec{Sec: int32(sec), Nsec: int32(nsec)}
    16  }
    17  
    18  func setTimeval(sec, usec int64) Timeval {
    19  	return Timeval{Sec: int32(sec), Usec: int32(usec)}
    20  }
    21  
    22  func SetKevent(k *Kevent_t, fd, mode, flags int) {
    23  	k.Ident = uint32(fd)
    24  	k.Filter = int16(mode)
    25  	k.Flags = uint16(flags)
    26  }
    27  
    28  func (iov *Iovec) SetLen(length int) {
    29  	iov.Len = uint32(length)
    30  }
    31  
    32  func (msghdr *Msghdr) SetControllen(length int) {
    33  	msghdr.Controllen = uint32(length)
    34  }
    35  
    36  func (msghdr *Msghdr) SetIovlen(length int) {
    37  	msghdr.Iovlen = int32(length)
    38  }
    39  
    40  func (cmsg *Cmsghdr) SetLen(length int) {
    41  	cmsg.Len = uint32(length)
    42  }
    43  
    44  func sendfile(outfd int, infd int, offset *int64, count int) (written int, err error) {
    45  	var writtenOut uint64 = 0
    46  	_, _, e1 := Syscall9(SYS_SENDFILE, uintptr(infd), uintptr(outfd), uintptr(*offset), uintptr((*offset)>>32), uintptr(count), 0, uintptr(unsafe.Pointer(&writtenOut)), 0, 0)
    47  
    48  	written = int(writtenOut)
    49  
    50  	if e1 != 0 {
    51  		err = e1
    52  	}
    53  	return
    54  }
    55  
    56  func Syscall9(num, a1, a2, a3, a4, a5, a6, a7, a8, a9 uintptr) (r1, r2 uintptr, err syscall.Errno)
    57  
    58  func PtraceGetFsBase(pid int, fsbase *int64) (err error) {
    59  	return ptrace(PTRACE_GETFSBASE, pid, uintptr(unsafe.Pointer(fsbase)), 0)
    60  }
    61  
    62  func PtraceIO(req int, pid int, addr uintptr, out []byte, countin int) (count int, err error) {
    63  	ioDesc := PtraceIoDesc{Op: int32(req), Offs: (*byte)(unsafe.Pointer(addr)), Addr: (*byte)(unsafe.Pointer(&out[0])), Len: uint32(countin)}
    64  	err = ptrace(PTRACE_IO, pid, uintptr(unsafe.Pointer(&ioDesc)), 0)
    65  	return int(ioDesc.Len), err
    66  }