gitextract_v2i9lf6x/ ├── .github/ │ └── workflows/ │ └── test.yml ├── .gitignore ├── 1.19_linux/ │ ├── internal/ │ │ ├── reflectlite/ │ │ │ └── reflect_mirror_test.go.patch │ │ └── testenv/ │ │ ├── testenv.go.patch │ │ ├── testenv_notunix.go.patch │ │ └── testenv_unix.go.patch │ ├── math/ │ │ └── big/ │ │ └── link_test.go.patch │ ├── runtime/ │ │ ├── align_test.go.patch │ │ ├── callers_test.go.patch │ │ ├── cgo/ │ │ │ ├── cgo.go.patch │ │ │ ├── gcc_linux_arm64.c.patch │ │ │ ├── hitsumabushi_clock_linux.c │ │ │ ├── hitsumabushi_cpu_linux.c │ │ │ ├── hitsumabushi_filesystem_linux.c │ │ │ ├── hitsumabushi_futex_linux.c │ │ │ ├── hitsumabushi_mem_linux.c │ │ │ ├── hitsumabushi_syscalls_linux.c │ │ │ └── hitsumabushi_thread_linux.c │ │ ├── crash_test.go.patch │ │ ├── crash_unix_test.go.patch │ │ ├── debug/ │ │ │ ├── heapdump_test.go.patch │ │ │ └── panic_test.go.patch │ │ ├── debug_test.go.patch │ │ ├── export_linux_test.go.patch │ │ ├── export_unix_test.go.patch │ │ ├── internal/ │ │ │ └── syscall/ │ │ │ ├── asm_linux_amd64.s.patch │ │ │ ├── asm_linux_arm64.s.patch │ │ │ └── syscall_linux.go.patch │ │ ├── mem_linux.go │ │ ├── memmove_linux_amd64_test.go.patch │ │ ├── nbpipe_pipe2.go.patch │ │ ├── nbpipe_test.go.patch │ │ ├── netpoll_epoll.go.patch │ │ ├── netpoll_fake.go.patch │ │ ├── norace_linux_test.go.patch │ │ ├── os_linux.go.patch │ │ ├── proc_test.go.patch │ │ ├── runtime1.go.patch │ │ ├── runtime_linux_test.go.patch │ │ ├── runtime_mmap_test.go.patch │ │ ├── runtime_test.go.patch │ │ ├── runtime_unix_test.go.patch │ │ ├── stack_test.go.patch │ │ ├── stubs2.go.patch │ │ ├── stubs3.go.patch │ │ ├── sys_libc.go.patch │ │ ├── sys_linux_amd64.s.patch │ │ ├── sys_linux_arm64.s.patch │ │ ├── time_linux_amd64.s.patch │ │ ├── timeasm.go.patch │ │ ├── timestub.go.patch │ │ └── timestub2.go.patch │ ├── strconv/ │ │ └── fp_test.go.patch │ ├── sync/ │ │ └── atomic/ │ │ └── atomic_test.go.patch │ ├── syscall/ │ │ ├── hitsumabushi_stubs_linux_amd64.go │ │ ├── hitsumabushi_stubs_linux_arm64.go │ │ ├── rlimit.go.patch │ │ └── syscall_linux.go.patch │ ├── testing/ │ │ └── run_example.go │ └── time/ │ ├── format_test.go.patch │ ├── internal_test.go.patch │ ├── sleep_test.go.patch │ ├── time_test.go.patch │ ├── tzdata_test.go.patch │ ├── zoneinfo_test.go.patch │ ├── zoneinfo_unix.go.patch │ └── zoneinfo_unix_test.go.patch ├── 1.19_windows/ │ ├── runtime/ │ │ ├── abi_test.go.patch │ │ ├── cgo/ │ │ │ ├── gcc_fatalf.c.patch │ │ │ ├── gcc_libinit.c.patch │ │ │ ├── gcc_libinit_windows.c.patch │ │ │ ├── gcc_windows_amd64.c.patch │ │ │ └── libcgo.h.patch │ │ ├── crash_test.go.patch │ │ ├── malloc_test.go.patch │ │ ├── os_windows.go.patch │ │ ├── syscall_windows.go.patch │ │ └── syscall_windows_test.go.patch │ └── sync/ │ └── mutex_test.go.patch ├── 1.20_linux/ │ ├── internal/ │ │ ├── reflectlite/ │ │ │ └── reflect_mirror_test.go.patch │ │ └── testenv/ │ │ ├── exec.go.patch │ │ ├── testenv.go.patch │ │ ├── testenv_notunix.go.patch │ │ └── testenv_unix.go.patch │ ├── math/ │ │ └── big/ │ │ └── link_test.go.patch │ ├── runtime/ │ │ ├── align_test.go.patch │ │ ├── callers_test.go.patch │ │ ├── cgo/ │ │ │ ├── cgo.go.patch │ │ │ ├── gcc_linux_amd64.c.patch │ │ │ ├── gcc_linux_arm64.c.patch │ │ │ ├── gcc_setenv.c.patch │ │ │ ├── gcc_sigaction.c.patch │ │ │ ├── hitsumabushi_clock_linux.c │ │ │ ├── hitsumabushi_cpu_linux.c │ │ │ ├── hitsumabushi_filesystem_linux.c │ │ │ ├── hitsumabushi_futex_linux.c │ │ │ ├── hitsumabushi_mem_linux.c │ │ │ ├── hitsumabushi_syscalls_linux.c │ │ │ ├── hitsumabushi_thread_linux.c │ │ │ ├── linux_syscall.c.patch │ │ │ └── sigaction.go.patch │ │ ├── crash_test.go.patch │ │ ├── crash_unix_test.go.patch │ │ ├── debug/ │ │ │ ├── heapdump_test.go.patch │ │ │ └── panic_test.go.patch │ │ ├── debug_test.go.patch │ │ ├── export_unix_test.go │ │ ├── internal/ │ │ │ └── syscall/ │ │ │ ├── asm_linux_amd64.s.patch │ │ │ ├── asm_linux_arm64.s.patch │ │ │ ├── syscall_linux.go.patch │ │ │ └── syscall_linux_test.go.patch │ │ ├── mem_linux.go │ │ ├── memmove_linux_amd64_test.go.patch │ │ ├── nbpipe_pipe2.go.patch │ │ ├── nbpipe_test.go.patch │ │ ├── netpoll_epoll.go.patch │ │ ├── netpoll_fake.go.patch │ │ ├── norace_linux_test.go.patch │ │ ├── os_linux.go.patch │ │ ├── proc_test.go.patch │ │ ├── runtime1.go.patch │ │ ├── runtime_linux_test.go.patch │ │ ├── runtime_mmap_test.go.patch │ │ ├── runtime_test.go.patch │ │ ├── runtime_unix_test.go.patch │ │ ├── stack_test.go.patch │ │ ├── stubs2.go.patch │ │ ├── stubs3.go.patch │ │ ├── sys_libc.go.patch │ │ ├── sys_linux_amd64.s.patch │ │ ├── sys_linux_arm64.s.patch │ │ ├── time_linux_amd64.s.patch │ │ ├── timeasm.go.patch │ │ ├── timestub.go.patch │ │ └── timestub2.go.patch │ ├── strconv/ │ │ └── fp_test.go.patch │ ├── sync/ │ │ └── atomic/ │ │ └── atomic_test.go.patch │ ├── syscall/ │ │ ├── hitsumabushi_stubs_linux_amd64.go │ │ ├── hitsumabushi_stubs_linux_arm64.go │ │ ├── rlimit.go.patch │ │ └── syscall_linux.go.patch │ ├── testing/ │ │ └── run_example.go │ └── time/ │ ├── format_test.go.patch │ ├── internal_test.go.patch │ ├── sleep_test.go.patch │ ├── time_test.go.patch │ ├── tzdata_test.go.patch │ ├── zoneinfo_test.go.patch │ ├── zoneinfo_unix.go.patch │ └── zoneinfo_unix_test.go.patch ├── 1.20_windows/ │ ├── runtime/ │ │ ├── abi_test.go.patch │ │ ├── cgo/ │ │ │ └── gcc_windows_amd64.c.patch │ │ ├── crash_test.go.patch │ │ ├── malloc_test.go.patch │ │ ├── os_windows.go.patch │ │ ├── syscall_windows.go.patch │ │ └── syscall_windows_test.go.patch │ └── sync/ │ └── mutex_test.go.patch ├── 1.21_linux/ │ ├── internal/ │ │ ├── reflectlite/ │ │ │ └── reflect_mirror_test.go.patch │ │ ├── syscall/ │ │ │ └── unix/ │ │ │ └── fcntl_unix.go.patch │ │ └── testenv/ │ │ ├── exec.go.patch │ │ ├── testenv.go.patch │ │ ├── testenv_notunix.go.patch │ │ └── testenv_unix.go.patch │ ├── math/ │ │ ├── big/ │ │ │ └── link_test.go.patch │ │ └── rand/ │ │ └── default_test.go.patch │ ├── runtime/ │ │ ├── align_test.go.patch │ │ ├── callers_test.go.patch │ │ ├── cgo/ │ │ │ ├── cgo.go.patch │ │ │ ├── gcc_linux_amd64.c.patch │ │ │ ├── gcc_linux_arm64.c.patch │ │ │ ├── gcc_setenv.c.patch │ │ │ ├── gcc_sigaction.c.patch │ │ │ ├── hitsumabushi_clock_linux.c │ │ │ ├── hitsumabushi_cpu_linux.c │ │ │ ├── hitsumabushi_filesystem_linux.c │ │ │ ├── hitsumabushi_futex_linux.c │ │ │ ├── hitsumabushi_mem_linux.c │ │ │ ├── hitsumabushi_syscalls_linux.c │ │ │ ├── hitsumabushi_thread_linux.c │ │ │ ├── linux_syscall.c.patch │ │ │ └── sigaction.go.patch │ │ ├── crash_test.go.patch │ │ ├── crash_unix_test.go.patch │ │ ├── debug/ │ │ │ ├── heapdump_test.go.patch │ │ │ └── panic_test.go.patch │ │ ├── debug_test.go.patch │ │ ├── export_unix_test.go │ │ ├── internal/ │ │ │ └── syscall/ │ │ │ ├── asm_linux_amd64.s.patch │ │ │ ├── asm_linux_arm64.s.patch │ │ │ ├── syscall_linux.go.patch │ │ │ └── syscall_linux_test.go.patch │ │ ├── mem_linux.go │ │ ├── memmove_linux_amd64_test.go.patch │ │ ├── nbpipe_pipe2.go.patch │ │ ├── nbpipe_test.go.patch │ │ ├── netpoll_epoll.go.patch │ │ ├── netpoll_fake.go.patch │ │ ├── norace_linux_test.go.patch │ │ ├── os_linux.go.patch │ │ ├── panicnil_test.go.patch │ │ ├── proc_test.go.patch │ │ ├── runtime1.go.patch │ │ ├── runtime_linux_test.go.patch │ │ ├── runtime_mmap_test.go.patch │ │ ├── runtime_test.go.patch │ │ ├── runtime_unix_test.go.patch │ │ ├── stack_test.go.patch │ │ ├── stubs2.go.patch │ │ ├── stubs3.go.patch │ │ ├── sys_libc.go.patch │ │ ├── sys_linux_amd64.s.patch │ │ ├── sys_linux_arm64.s.patch │ │ ├── time_linux_amd64.s.patch │ │ ├── timeasm.go.patch │ │ ├── timestub.go.patch │ │ ├── timestub2.go.patch │ │ └── traceback_test.go.patch │ ├── strconv/ │ │ └── fp_test.go.patch │ ├── sync/ │ │ └── atomic/ │ │ └── atomic_test.go.patch │ ├── syscall/ │ │ ├── hitsumabushi_stubs_linux_amd64.go │ │ ├── hitsumabushi_stubs_linux_arm64.go │ │ ├── rlimit.go.patch │ │ └── syscall_linux.go.patch │ ├── testing/ │ │ └── run_example.go │ └── time/ │ ├── format_test.go.patch │ ├── internal_test.go.patch │ ├── sleep_test.go.patch │ ├── time_test.go.patch │ ├── tzdata_test.go.patch │ ├── zoneinfo_test.go.patch │ ├── zoneinfo_unix.go.patch │ └── zoneinfo_unix_test.go.patch ├── 1.21_windows/ │ ├── runtime/ │ │ ├── abi_test.go.patch │ │ ├── cgo/ │ │ │ └── gcc_windows_amd64.c.patch │ │ ├── crash_test.go.patch │ │ ├── malloc_test.go.patch │ │ ├── os_windows.go.patch │ │ ├── runtime-gdb_test.go.patch │ │ ├── syscall_windows.go.patch │ │ └── syscall_windows_test.go.patch │ └── sync/ │ └── mutex_test.go.patch ├── 1.22_linux/ │ ├── internal/ │ │ ├── reflectlite/ │ │ │ └── reflect_mirror_test.go.patch │ │ ├── syscall/ │ │ │ └── unix/ │ │ │ └── fcntl_unix.go.patch │ │ └── testenv/ │ │ ├── exec.go.patch │ │ ├── testenv.go.patch │ │ ├── testenv_notunix.go.patch │ │ └── testenv_unix.go.patch │ ├── math/ │ │ ├── big/ │ │ │ └── link_test.go.patch │ │ └── rand/ │ │ └── default_test.go.patch │ ├── runtime/ │ │ ├── align_test.go.patch │ │ ├── callers_test.go.patch │ │ ├── cgo/ │ │ │ ├── cgo.go.patch │ │ │ ├── gcc_linux_amd64.c.patch │ │ │ ├── gcc_linux_arm64.c.patch │ │ │ ├── gcc_setenv.c.patch │ │ │ ├── gcc_sigaction.c.patch │ │ │ ├── hitsumabushi_clock_linux.c │ │ │ ├── hitsumabushi_cpu_linux.c │ │ │ ├── hitsumabushi_filesystem_linux.c │ │ │ ├── hitsumabushi_futex_linux.c │ │ │ ├── hitsumabushi_mem_linux.c │ │ │ ├── hitsumabushi_syscalls_linux.c │ │ │ ├── hitsumabushi_thread_linux.c │ │ │ ├── linux_syscall.c.patch │ │ │ └── sigaction.go.patch │ │ ├── crash_test.go.patch │ │ ├── crash_unix_test.go.patch │ │ ├── debug/ │ │ │ ├── heapdump_test.go.patch │ │ │ └── panic_test.go.patch │ │ ├── debug_test.go.patch │ │ ├── export_unix_test.go │ │ ├── fds_unix.go.patch │ │ ├── internal/ │ │ │ └── syscall/ │ │ │ ├── asm_linux_amd64.s.patch │ │ │ ├── asm_linux_arm64.s.patch │ │ │ ├── syscall_linux.go.patch │ │ │ └── syscall_linux_test.go.patch │ │ ├── mem_linux.go │ │ ├── memmove_linux_amd64_test.go.patch │ │ ├── metrics_test.go.patch │ │ ├── nbpipe_pipe2.go.patch │ │ ├── nbpipe_test.go.patch │ │ ├── netpoll_epoll.go.patch │ │ ├── netpoll_fake.go.patch │ │ ├── norace_linux_test.go.patch │ │ ├── os_linux.go.patch │ │ ├── panicnil_test.go.patch │ │ ├── proc_test.go.patch │ │ ├── rand_test.go.patch │ │ ├── runtime1.go.patch │ │ ├── runtime_linux_test.go.patch │ │ ├── runtime_mmap_test.go.patch │ │ ├── runtime_test.go.patch │ │ ├── runtime_unix_test.go.patch │ │ ├── stack_test.go.patch │ │ ├── stubs2.go.patch │ │ ├── stubs3.go.patch │ │ ├── sys_libc.go.patch │ │ ├── sys_linux_amd64.s.patch │ │ ├── sys_linux_arm64.s.patch │ │ ├── time_linux_amd64.s.patch │ │ ├── timeasm.go.patch │ │ ├── timestub.go.patch │ │ ├── timestub2.go.patch │ │ └── traceback_test.go.patch │ ├── strconv/ │ │ └── fp_test.go.patch │ ├── sync/ │ │ └── atomic/ │ │ └── atomic_test.go.patch │ ├── syscall/ │ │ ├── hitsumabushi_stubs_linux_amd64.go │ │ ├── hitsumabushi_stubs_linux_arm64.go │ │ ├── rlimit.go.patch │ │ └── syscall_linux.go.patch │ ├── testing/ │ │ └── run_example.go │ └── time/ │ ├── format_test.go.patch │ ├── internal_test.go.patch │ ├── sleep_test.go.patch │ ├── time_test.go.patch │ ├── tzdata_test.go.patch │ ├── zoneinfo_test.go.patch │ ├── zoneinfo_unix.go.patch │ └── zoneinfo_unix_test.go.patch ├── 1.22_windows/ │ ├── internal/ │ │ └── testenv/ │ │ ├── exec.go.patch │ │ └── testenv.go.patch │ └── runtime/ │ ├── cgo/ │ │ ├── gcc_windows_amd64.c.patch │ │ └── libcgo.h.patch │ ├── os_windows.go.patch │ ├── signal_windows.go.patch │ ├── syscall_windows.go.patch │ └── syscall_windows_test.go.patch ├── 1.23_linux/ │ ├── internal/ │ │ ├── reflectlite/ │ │ │ └── reflect_mirror_test.go.patch │ │ ├── runtime/ │ │ │ └── syscall/ │ │ │ ├── asm_linux_amd64.s.patch │ │ │ ├── asm_linux_arm64.s.patch │ │ │ ├── syscall_linux.go.patch │ │ │ └── syscall_linux_test.go.patch │ │ ├── syscall/ │ │ │ └── unix/ │ │ │ └── fcntl_unix.go.patch │ │ └── testenv/ │ │ ├── exec.go.patch │ │ ├── testenv.go.patch │ │ ├── testenv_notunix.go.patch │ │ └── testenv_unix.go.patch │ ├── math/ │ │ ├── big/ │ │ │ └── link_test.go.patch │ │ └── rand/ │ │ └── default_test.go.patch │ ├── runtime/ │ │ ├── align_test.go.patch │ │ ├── callers_test.go.patch │ │ ├── cgo/ │ │ │ ├── cgo.go.patch │ │ │ ├── gcc_linux_amd64.c.patch │ │ │ ├── gcc_linux_arm64.c.patch │ │ │ ├── gcc_setenv.c.patch │ │ │ ├── gcc_sigaction.c.patch │ │ │ ├── hitsumabushi_clock_linux.c │ │ │ ├── hitsumabushi_cpu_linux.c │ │ │ ├── hitsumabushi_filesystem_linux.c │ │ │ ├── hitsumabushi_futex_linux.c │ │ │ ├── hitsumabushi_mem_linux.c │ │ │ ├── hitsumabushi_syscalls_linux.c │ │ │ ├── hitsumabushi_thread_linux.c │ │ │ ├── linux_syscall.c.patch │ │ │ └── sigaction.go.patch │ │ ├── crash_test.go.patch │ │ ├── crash_unix_test.go.patch │ │ ├── debug/ │ │ │ ├── heapdump_test.go.patch │ │ │ └── panic_test.go.patch │ │ ├── debug_test.go.patch │ │ ├── export_unix_test.go │ │ ├── fds_unix.go.patch │ │ ├── mem_linux.go │ │ ├── memmove_linux_amd64_test.go.patch │ │ ├── metrics_test.go.patch │ │ ├── nbpipe_pipe2.go.patch │ │ ├── nbpipe_test.go.patch │ │ ├── netpoll_epoll.go.patch │ │ ├── netpoll_fake.go.patch │ │ ├── norace_linux_test.go.patch │ │ ├── os_linux.go.patch │ │ ├── panicnil_test.go.patch │ │ ├── proc_test.go.patch │ │ ├── rand_test.go.patch │ │ ├── runtime1.go.patch │ │ ├── runtime_linux_test.go.patch │ │ ├── runtime_mmap_test.go.patch │ │ ├── runtime_test.go.patch │ │ ├── runtime_unix_test.go.patch │ │ ├── stack_test.go.patch │ │ ├── stubs2.go.patch │ │ ├── stubs3.go.patch │ │ ├── sys_libc.go.patch │ │ ├── sys_linux_amd64.s.patch │ │ ├── sys_linux_arm64.s.patch │ │ ├── time_linux_amd64.s.patch │ │ ├── timeasm.go.patch │ │ ├── timestub.go.patch │ │ ├── timestub2.go.patch │ │ └── traceback_test.go.patch │ ├── strconv/ │ │ └── fp_test.go.patch │ ├── sync/ │ │ └── atomic/ │ │ └── atomic_test.go.patch │ ├── syscall/ │ │ ├── hitsumabushi_stubs_linux_amd64.go │ │ ├── hitsumabushi_stubs_linux_arm64.go │ │ ├── rlimit.go.patch │ │ └── syscall_linux.go.patch │ ├── testing/ │ │ └── run_example.go │ └── time/ │ ├── format_test.go.patch │ ├── internal_test.go.patch │ ├── sleep_test.go.patch │ ├── time_test.go.patch │ ├── tzdata_test.go.patch │ ├── zoneinfo_test.go.patch │ ├── zoneinfo_unix.go.patch │ └── zoneinfo_unix_test.go.patch ├── 1.23_windows/ │ ├── internal/ │ │ └── testenv/ │ │ ├── exec.go.patch │ │ └── testenv.go.patch │ └── runtime/ │ ├── cgo/ │ │ ├── gcc_windows_amd64.c.patch │ │ └── libcgo.h.patch │ ├── os_windows.go.patch │ ├── signal_windows.go.patch │ ├── syscall_windows.go.patch │ └── syscall_windows_test.go.patch ├── 1.24_linux/ │ ├── internal/ │ │ ├── reflectlite/ │ │ │ └── reflect_mirror_test.go.patch │ │ ├── runtime/ │ │ │ └── syscall/ │ │ │ ├── asm_linux_amd64.s.patch │ │ │ ├── asm_linux_arm64.s.patch │ │ │ ├── syscall_linux.go.patch │ │ │ └── syscall_linux_test.go.patch │ │ ├── syscall/ │ │ │ └── unix/ │ │ │ └── fcntl_unix.go.patch │ │ └── testenv/ │ │ ├── exec.go.patch │ │ ├── testenv.go.patch │ │ ├── testenv_notunix.go.patch │ │ └── testenv_unix.go.patch │ ├── math/ │ │ ├── big/ │ │ │ └── link_test.go.patch │ │ └── rand/ │ │ └── default_test.go.patch │ ├── runtime/ │ │ ├── align_test.go.patch │ │ ├── callers_test.go.patch │ │ ├── cgo/ │ │ │ ├── cgo.go.patch │ │ │ ├── gcc_linux_amd64.c.patch │ │ │ ├── gcc_linux_arm64.c.patch │ │ │ ├── gcc_setenv.c.patch │ │ │ ├── gcc_sigaction.c.patch │ │ │ ├── hitsumabushi_clock_linux.c │ │ │ ├── hitsumabushi_cpu_linux.c │ │ │ ├── hitsumabushi_filesystem_linux.c │ │ │ ├── hitsumabushi_futex_linux.c │ │ │ ├── hitsumabushi_mem_linux.c │ │ │ ├── hitsumabushi_syscalls_linux.c │ │ │ ├── hitsumabushi_thread_linux.c │ │ │ ├── linux_syscall.c.patch │ │ │ └── sigaction.go.patch │ │ ├── crash_test.go.patch │ │ ├── crash_unix_test.go.patch │ │ ├── debug/ │ │ │ ├── heapdump_test.go.patch │ │ │ └── panic_test.go.patch │ │ ├── debug_test.go.patch │ │ ├── export_unix_test.go │ │ ├── fds_unix.go.patch │ │ ├── mem_linux.go │ │ ├── memmove_linux_amd64_test.go.patch │ │ ├── metrics_test.go.patch │ │ ├── nbpipe_pipe2.go.patch │ │ ├── nbpipe_test.go.patch │ │ ├── netpoll_epoll.go.patch │ │ ├── netpoll_fake.go.patch │ │ ├── nosan_linux_test.go.patch │ │ ├── os_linux.go.patch │ │ ├── panicnil_test.go.patch │ │ ├── proc_test.go.patch │ │ ├── rand_test.go.patch │ │ ├── runtime1.go.patch │ │ ├── runtime_linux_test.go.patch │ │ ├── runtime_mmap_test.go.patch │ │ ├── runtime_test.go.patch │ │ ├── runtime_unix_test.go.patch │ │ ├── stack_test.go.patch │ │ ├── stubs2.go.patch │ │ ├── stubs3.go.patch │ │ ├── sys_libc.go.patch │ │ ├── sys_linux_amd64.s.patch │ │ ├── sys_linux_arm64.s.patch │ │ ├── time_linux_amd64.s.patch │ │ ├── timeasm.go.patch │ │ ├── timestub.go.patch │ │ ├── timestub2.go.patch │ │ └── traceback_test.go.patch │ ├── strconv/ │ │ └── fp_test.go.patch │ ├── sync/ │ │ └── atomic/ │ │ └── atomic_test.go.patch │ ├── syscall/ │ │ ├── hitsumabushi_stubs_linux_amd64.go │ │ ├── hitsumabushi_stubs_linux_arm64.go │ │ ├── rlimit.go.patch │ │ └── syscall_linux.go.patch │ ├── testing/ │ │ └── run_example.go │ └── time/ │ ├── format_test.go.patch │ ├── internal_test.go.patch │ ├── sleep_test.go.patch │ ├── time_test.go.patch │ ├── tzdata_test.go.patch │ ├── zoneinfo_test.go.patch │ ├── zoneinfo_unix.go.patch │ └── zoneinfo_unix_test.go.patch ├── 1.24_windows/ │ ├── internal/ │ │ └── testenv/ │ │ ├── exec.go.patch │ │ └── testenv.go.patch │ └── runtime/ │ ├── cgo/ │ │ ├── gcc_windows_amd64.c.patch │ │ └── libcgo.h.patch │ ├── os_windows.go.patch │ ├── signal_windows.go.patch │ ├── syscall_windows.go.patch │ └── syscall_windows_test.go.patch ├── 1.25_linux/ │ ├── internal/ │ │ ├── reflectlite/ │ │ │ └── reflect_mirror_test.go.patch │ │ ├── runtime/ │ │ │ ├── cgroup/ │ │ │ │ └── cgroup_linux.go.patch │ │ │ └── syscall/ │ │ │ ├── asm_linux_amd64.s.patch │ │ │ ├── asm_linux_arm64.s.patch │ │ │ ├── syscall_linux.go.patch │ │ │ └── syscall_linux_test.go.patch │ │ ├── syscall/ │ │ │ └── unix/ │ │ │ └── fcntl_unix.go.patch │ │ └── testenv/ │ │ ├── exec.go.patch │ │ ├── testenv.go.patch │ │ ├── testenv_notunix.go.patch │ │ └── testenv_unix.go.patch │ ├── math/ │ │ ├── big/ │ │ │ └── link_test.go.patch │ │ └── rand/ │ │ └── default_test.go.patch │ ├── runtime/ │ │ ├── align_test.go.patch │ │ ├── callers_test.go.patch │ │ ├── cgo/ │ │ │ ├── cgo.go.patch │ │ │ ├── gcc_linux_amd64.c.patch │ │ │ ├── gcc_linux_arm64.c.patch │ │ │ ├── gcc_setenv.c.patch │ │ │ ├── gcc_sigaction.c.patch │ │ │ ├── hitsumabushi_clock_linux.c │ │ │ ├── hitsumabushi_cpu_linux.c │ │ │ ├── hitsumabushi_filesystem_linux.c │ │ │ ├── hitsumabushi_futex_linux.c │ │ │ ├── hitsumabushi_mem_linux.c │ │ │ ├── hitsumabushi_syscalls_linux.c │ │ │ ├── hitsumabushi_thread_linux.c │ │ │ ├── linux_syscall.c.patch │ │ │ └── sigaction.go.patch │ │ ├── crash_test.go.patch │ │ ├── crash_unix_test.go.patch │ │ ├── debug/ │ │ │ ├── heapdump_test.go.patch │ │ │ ├── panic_test.go.patch │ │ │ └── stack_test.go.patch │ │ ├── debug_test.go.patch │ │ ├── decoratemappings_test.go.patch │ │ ├── export_unix_test.go │ │ ├── fds_unix.go.patch │ │ ├── mem_linux.go │ │ ├── memmove_linux_amd64_test.go.patch │ │ ├── metrics_test.go.patch │ │ ├── nbpipe_pipe2.go.patch │ │ ├── nbpipe_test.go.patch │ │ ├── netpoll_epoll.go.patch │ │ ├── netpoll_fake.go.patch │ │ ├── nosan_linux_test.go.patch │ │ ├── os_linux.go.patch │ │ ├── panicnil_test.go.patch │ │ ├── proc_test.go.patch │ │ ├── rand_test.go.patch │ │ ├── runtime1.go.patch │ │ ├── runtime_linux_test.go.patch │ │ ├── runtime_mmap_test.go.patch │ │ ├── runtime_test.go.patch │ │ ├── runtime_unix_test.go.patch │ │ ├── stack_test.go.patch │ │ ├── stubs2.go.patch │ │ ├── stubs3.go.patch │ │ ├── sys_libc.go.patch │ │ ├── sys_linux_amd64.s.patch │ │ ├── sys_linux_arm64.s.patch │ │ ├── time_linux_amd64.s.patch │ │ ├── timeasm.go.patch │ │ ├── timestub.go.patch │ │ ├── timestub2.go.patch │ │ └── traceback_test.go.patch │ ├── strconv/ │ │ └── fp_test.go.patch │ ├── sync/ │ │ └── atomic/ │ │ └── atomic_test.go.patch │ ├── syscall/ │ │ ├── hitsumabushi_stubs_linux_amd64.go │ │ ├── hitsumabushi_stubs_linux_arm64.go │ │ ├── rlimit.go.patch │ │ └── syscall_linux.go.patch │ ├── testing/ │ │ └── run_example.go │ └── time/ │ ├── format_test.go.patch │ ├── internal_test.go.patch │ ├── sleep_test.go.patch │ ├── time_test.go.patch │ ├── tzdata_test.go.patch │ ├── zoneinfo_test.go.patch │ ├── zoneinfo_unix.go.patch │ └── zoneinfo_unix_test.go.patch ├── 1.25_windows/ │ ├── internal/ │ │ └── testenv/ │ │ ├── exec.go.patch │ │ └── testenv.go.patch │ └── runtime/ │ ├── cgo/ │ │ ├── gcc_windows_amd64.c.patch │ │ └── libcgo.h.patch │ ├── os_windows.go.patch │ ├── signal_windows.go.patch │ ├── syscall_windows.go.patch │ └── syscall_windows_test.go.patch ├── 1.26_linux/ │ ├── internal/ │ │ ├── reflectlite/ │ │ │ └── reflect_mirror_test.go.patch │ │ ├── runtime/ │ │ │ ├── cgroup/ │ │ │ │ └── cgroup_linux.go.patch │ │ │ └── syscall/ │ │ │ └── linux/ │ │ │ ├── asm_linux_amd64.s.patch │ │ │ ├── asm_linux_arm64.s.patch │ │ │ ├── syscall_linux.go.patch │ │ │ └── syscall_linux_test.go.patch │ │ ├── strconv/ │ │ │ └── fp_test.go.patch │ │ ├── syscall/ │ │ │ └── unix/ │ │ │ └── fcntl_unix.go.patch │ │ └── testenv/ │ │ ├── exec.go.patch │ │ ├── testenv.go.patch │ │ ├── testenv_notunix.go.patch │ │ └── testenv_unix.go.patch │ ├── math/ │ │ ├── big/ │ │ │ └── link_test.go.patch │ │ └── rand/ │ │ └── default_test.go.patch │ ├── runtime/ │ │ ├── align_test.go.patch │ │ ├── asm_arm64.s.patch │ │ ├── callers_test.go.patch │ │ ├── cgo/ │ │ │ ├── cgo.go.patch │ │ │ ├── gcc_clearenv.c.patch │ │ │ ├── gcc_linux_amd64.c.patch │ │ │ ├── gcc_linux_arm64.c.patch │ │ │ ├── gcc_setenv.c.patch │ │ │ ├── gcc_sigaction.c.patch │ │ │ ├── hitsumabushi_clock_linux.c │ │ │ ├── hitsumabushi_cpu_linux.c │ │ │ ├── hitsumabushi_filesystem_linux.c │ │ │ ├── hitsumabushi_futex_linux.c │ │ │ ├── hitsumabushi_mem_linux.c │ │ │ ├── hitsumabushi_syscalls_linux.c │ │ │ ├── hitsumabushi_thread_linux.c │ │ │ ├── linux_syscall.c.patch │ │ │ └── sigaction.go.patch │ │ ├── crash_test.go.patch │ │ ├── crash_unix_test.go.patch │ │ ├── debug/ │ │ │ ├── heapdump_test.go.patch │ │ │ ├── panic_test.go.patch │ │ │ └── stack_test.go.patch │ │ ├── debug_test.go.patch │ │ ├── decoratemappings_test.go.patch │ │ ├── export_unix_test.go │ │ ├── fds_unix.go.patch │ │ ├── mem_linux.go │ │ ├── memmove_linux_amd64_test.go.patch │ │ ├── metrics_test.go.patch │ │ ├── nbpipe_pipe2.go.patch │ │ ├── nbpipe_test.go.patch │ │ ├── netpoll_epoll.go.patch │ │ ├── netpoll_fake.go.patch │ │ ├── nosan_linux_test.go.patch │ │ ├── os_linux.go.patch │ │ ├── os_linux64.go.patch │ │ ├── panicnil_test.go.patch │ │ ├── proc_test.go.patch │ │ ├── rand_test.go.patch │ │ ├── runtime1.go.patch │ │ ├── runtime_linux_test.go.patch │ │ ├── runtime_mmap_test.go.patch │ │ ├── runtime_test.go.patch │ │ ├── runtime_unix_test.go.patch │ │ ├── stack_test.go.patch │ │ ├── stubs2.go.patch │ │ ├── stubs3.go.patch │ │ ├── sys_libc.go.patch │ │ ├── sys_linux_amd64.s.patch │ │ ├── sys_linux_arm64.s.patch │ │ ├── time_linux_amd64.s.patch │ │ ├── timeasm.go.patch │ │ ├── timestub.go.patch │ │ ├── timestub2.go.patch │ │ └── traceback_test.go.patch │ ├── sync/ │ │ └── atomic/ │ │ └── atomic_test.go.patch │ ├── syscall/ │ │ ├── hitsumabushi_stubs_linux_amd64.go │ │ ├── hitsumabushi_stubs_linux_arm64.go │ │ ├── rlimit.go.patch │ │ └── syscall_linux.go.patch │ ├── testing/ │ │ └── run_example.go │ └── time/ │ ├── format_test.go.patch │ ├── internal_test.go.patch │ ├── sleep_test.go.patch │ ├── time_test.go.patch │ ├── tzdata_test.go.patch │ ├── zoneinfo_test.go.patch │ ├── zoneinfo_unix.go.patch │ └── zoneinfo_unix_test.go.patch ├── 1.26_windows/ │ ├── internal/ │ │ └── testenv/ │ │ ├── exec.go.patch │ │ └── testenv.go.patch │ └── runtime/ │ ├── cgo/ │ │ ├── gcc_windows_amd64.c.patch │ │ └── libcgo.h.patch │ ├── os_windows.go.patch │ ├── signal_windows.go.patch │ ├── syscall_windows.go.patch │ └── syscall_windows_test.go.patch ├── LICENSE ├── README.md ├── doc.go ├── example/ │ └── helloworld/ │ ├── .gitignore │ ├── genoverlayjson.go │ ├── main.c │ ├── main.go │ ├── run.sh │ └── run_cross.sh ├── go.mod ├── overlay.go ├── patch.go └── test.go