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).

asm_darwin_arm64.s 691B

123456789101112131415161718192021222324252627282930
  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 !gccgo
  5. // +build arm64,darwin
  6. #include "textflag.h"
  7. //
  8. // System call support for AMD64, Darwin
  9. //
  10. // Just jump to package syscall's implementation for all these functions.
  11. // The runtime may know about them.
  12. TEXT ·Syscall(SB),NOSPLIT,$0-56
  13. B syscall·Syscall(SB)
  14. TEXT ·Syscall6(SB),NOSPLIT,$0-80
  15. B syscall·Syscall6(SB)
  16. TEXT ·Syscall9(SB),NOSPLIT,$0-104
  17. B syscall·Syscall9(SB)
  18. TEXT ·RawSyscall(SB),NOSPLIT,$0-56
  19. B syscall·RawSyscall(SB)
  20. TEXT ·RawSyscall6(SB),NOSPLIT,$0-80
  21. B syscall·RawSyscall6(SB)