A lightweight mechanism to provide an *instant kickstart* to a Go web server instance upon changing any Go source files under the project directory (and its subdirectories).

syscall_darwin_arm64.go 1.8KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. // Copyright 2015 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. // +build arm64,darwin
  5. package unix
  6. import (
  7. "syscall"
  8. "unsafe"
  9. )
  10. func Getpagesize() int { return 16384 }
  11. func TimespecToNsec(ts Timespec) int64 { return int64(ts.Sec)*1e9 + int64(ts.Nsec) }
  12. func NsecToTimespec(nsec int64) (ts Timespec) {
  13. ts.Sec = nsec / 1e9
  14. ts.Nsec = nsec % 1e9
  15. return
  16. }
  17. func NsecToTimeval(nsec int64) (tv Timeval) {
  18. nsec += 999 // round up to microsecond
  19. tv.Usec = int32(nsec % 1e9 / 1e3)
  20. tv.Sec = int64(nsec / 1e9)
  21. return
  22. }
  23. //sysnb gettimeofday(tp *Timeval) (sec int64, usec int32, err error)
  24. func Gettimeofday(tv *Timeval) (err error) {
  25. // The tv passed to gettimeofday must be non-nil
  26. // but is otherwise unused. The answers come back
  27. // in the two registers.
  28. sec, usec, err := gettimeofday(tv)
  29. tv.Sec = sec
  30. tv.Usec = usec
  31. return err
  32. }
  33. func SetKevent(k *Kevent_t, fd, mode, flags int) {
  34. k.Ident = uint64(fd)
  35. k.Filter = int16(mode)
  36. k.Flags = uint16(flags)
  37. }
  38. func (iov *Iovec) SetLen(length int) {
  39. iov.Len = uint64(length)
  40. }
  41. func (msghdr *Msghdr) SetControllen(length int) {
  42. msghdr.Controllen = uint32(length)
  43. }
  44. func (cmsg *Cmsghdr) SetLen(length int) {
  45. cmsg.Len = uint32(length)
  46. }
  47. func sendfile(outfd int, infd int, offset *int64, count int) (written int, err error) {
  48. var length = uint64(count)
  49. _, _, e1 := Syscall6(SYS_SENDFILE, uintptr(infd), uintptr(outfd), uintptr(*offset), uintptr(unsafe.Pointer(&length)), 0, 0)
  50. written = int(length)
  51. if e1 != 0 {
  52. err = e1
  53. }
  54. return
  55. }
  56. func Syscall9(num, a1, a2, a3, a4, a5, a6, a7, a8, a9 uintptr) (r1, r2 uintptr, err syscall.Errno) // sic
  57. // SYS___SYSCTL is used by syscall_bsd.go for all BSDs, but in modern versions
  58. // of darwin/arm64 the syscall is called sysctl instead of __sysctl.
  59. const SYS___SYSCTL = SYS_SYSCTL