github.com/liujq9674git/golang-src-1.7@v0.0.0-20230517174348-17f6ec47f3f8/src/syscall/syscall_darwin_arm.go (about)

     1  // Copyright 2014 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 syscall
     6  
     7  import "unsafe"
     8  
     9  func Getpagesize() int { return 4096 }
    10  
    11  func TimespecToNsec(ts Timespec) int64 { return int64(ts.Sec)*1e9 + int64(ts.Nsec) }
    12  
    13  func NsecToTimespec(nsec int64) (ts Timespec) {
    14  	ts.Sec = int32(nsec / 1e9)
    15  	ts.Nsec = int32(nsec % 1e9)
    16  	return
    17  }
    18  
    19  func TimevalToNsec(tv Timeval) int64 { return int64(tv.Sec)*1e9 + int64(tv.Usec)*1e3 }
    20  
    21  func NsecToTimeval(nsec int64) (tv Timeval) {
    22  	nsec += 999 // round up to microsecond
    23  	tv.Usec = int32(nsec % 1e9 / 1e3)
    24  	tv.Sec = int32(nsec / 1e9)
    25  	return
    26  }
    27  
    28  //sysnb	gettimeofday(tp *Timeval) (sec int32, usec int32, err error)
    29  func Gettimeofday(tv *Timeval) error {
    30  	// The tv passed to gettimeofday must be non-nil
    31  	// but is otherwise unused. The answers come back
    32  	// in the two registers.
    33  	sec, usec, err := gettimeofday(tv)
    34  	if err != nil {
    35  		return err
    36  	}
    37  	if sec != 0 || usec != 0 {
    38  		tv.Sec = int32(sec)
    39  		tv.Usec = int32(usec)
    40  	}
    41  	return nil
    42  }
    43  
    44  func SetKevent(k *Kevent_t, fd, mode, flags int) {
    45  	k.Ident = uint32(fd)
    46  	k.Filter = int16(mode)
    47  	k.Flags = uint16(flags)
    48  }
    49  
    50  func (iov *Iovec) SetLen(length int) {
    51  	iov.Len = uint32(length)
    52  }
    53  
    54  func (msghdr *Msghdr) SetControllen(length int) {
    55  	msghdr.Controllen = uint32(length)
    56  }
    57  
    58  func (cmsg *Cmsghdr) SetLen(length int) {
    59  	cmsg.Len = uint32(length)
    60  }
    61  
    62  func sendfile(outfd int, infd int, offset *int64, count int) (written int, err error) {
    63  	var length = uint64(count)
    64  
    65  	_, _, e1 := Syscall9(SYS_SENDFILE, uintptr(infd), uintptr(outfd), uintptr(*offset), uintptr(*offset>>32), uintptr(unsafe.Pointer(&length)), 0, 0, 0, 0)
    66  
    67  	written = int(length)
    68  
    69  	if e1 != 0 {
    70  		err = e1
    71  	}
    72  	return
    73  }
    74  
    75  func Syscall9(num, a1, a2, a3, a4, a5, a6, a7, a8, a9 uintptr) (r1, r2 uintptr, err Errno) // sic