Rough //go:linkname list for Go 1.24
What is //go:linkname
?
TLDR it's a sneaky hack to get references to other package's symbols without import
-ing them. Go 1.23 imposed new restrictions on which symbols are permitted to be //go:linkname
-ed to outside of the Go standard library. That made me curious: what's the list of //go:linkname
symbols from the standard library?
📚 Some links for further reading
- https://www.pixelstech.net/article/1649596852-the-magic-of-go%3Alinkname
- https://siadat.github.io/blog/post/golinkname
- https://github.com/golang/go/issues/67401
- https://huizhou92.com/p/%23-golang-1.23-changes-to-/golinkname-and-what-it-means-for-developers/
Code to generate the list
package main
import (
"fmt"
"io/fs"
"log"
"maps"
"os"
"os/exec"
"path/filepath"
"regexp"
"slices"
"strings"
)
const tag = "go1.24.1"
func main() {
if _, err := os.Stat(".test/go"); err != nil {
cmd := exec.Command("git", "clone", "https://go.googlesource.com/go", ".test/go")
cmd.Stdin = os.Stdin
cmd.Stdout = os.Stdout
cmd.Stderr = os.Stderr
log.Printf("$ %v", cmd)
err := cmd.Run()
if err != nil {
log.Fatal(err)
}
}
allLinknames := map[string][]string{}
goSrcFS := os.DirFS(".test/go/src")
err := fs.WalkDir(goSrcFS, ".", func(path string, d fs.DirEntry, err error) error {
if err != nil {
return err
}
if d.IsDir() {
if slices.Contains([]string{"internal", "testdata", "vendor"}, d.Name()) {
return fs.SkipDir
}
return nil
}
if !strings.HasSuffix(d.Name(), ".go") {
return nil
}
packagePath := filepath.ToSlash(filepath.Dir(path))
data, err := fs.ReadFile(goSrcFS, path)
if err != nil {
return err
}
linknames := regexp.MustCompile(`(?m)^//go:linkname\s+(\w+)(?:\s+([\w\.]+))?$`).FindAllSubmatch(data, -1)
for _, match := range linknames {
if len(match) != 3 {
panic("unexpected match length")
}
var remoteName string
if len(match[2]) != 0 {
remoteName = string(match[2])
} else {
remoteName = packagePath + "." + string(match[1])
}
allLinknames[packagePath] = append(allLinknames[packagePath], remoteName)
}
return nil
})
if err != nil {
log.Fatal(err)
}
for _, packagePath := range slices.Sorted(maps.Keys(allLinknames)) {
linknames := allLinknames[packagePath]
fmt.Printf("package %s\n", packagePath)
for _, linkname := range linknames {
// localName := linkname[strings.LastIndex(linkname, ".")+1:]
fmt.Printf("%s\n", linkname)
}
fmt.Printf("\n")
}
}
The list
This is an overestimate of the linknames available in the Go standard library. Some of the //go:linkname
directives are gated behind //go:build
directives for specific operating systems or features. Some of them are false-positives. Some are duplicates. I may try to incrementally clean the list a bit but there's just so many items! 😅
💡 Tip: Use Ctrl+F to search through this list. Then search for the <package>.<name>
name part of the directive on https://cs.opensource.google/go/go.
package arena // GOEXPERIMENT=arenas
reflect.arena_New
arena.runtime_arena_newArena
arena.runtime_arena_arena_New
arena.runtime_arena_arena_Slice
arena.runtime_arena_arena_Free
arena.runtime_arena_heapify
package bytes
bytes.Repeat
package crypto/rand
crypto/rand.fatal
package crypto/tls
crypto/tls.cipherSuitesTLS13
crypto/tls.aeadAESGCMTLS13
crypto/tls.errNoCertificates
crypto/tls.defaultCipherSuitesTLS13
crypto/tls.defaultCipherSuitesTLS13NoAES
package crypto/x509
crypto/x509.systemRoots
package database/sql
database/sql.convertAssign
database/sql.drivers
package debug/buildinfo
debug/buildinfo.errNotGoExe
package encoding/json
encoding/json.unquoteBytes
encoding/json.isValidNumber
encoding/json.typeFields
package go/build
go/build.defaultToolTags
go/build.defaultReleaseTags
go/build.parseFileHeader
go/build.readComments
package go/types
go/types.srcimporter_setUsesCgo
runtime.cgoAlwaysFalse
runtime.cgoUse
runtime.cgoKeepAlive
runtime.cgoNoCallback
runtime.cgocall
runtime.cgoCheckPointer
runtime.cgoCheckResult
package hash/maphash
runtime.rand
runtime.memhash
package iter
runtime.newcoro
runtime.coroswitch
package maps
maps.clone
package math
math.Float32bits
package math/big
math/big.addVV
math/big.subVV
math/big.addVW
math/big.subVW
math/big.shlVU
math/big.mulAddVWW
math/big.addMulVVW
package math/bits
runtime.overflowError
runtime.divideError
package math/rand
runtime.rand
package math/rand/v2
runtime.rand
package net
runtime.rand
net.isDomainName
net.defaultNS
syscall.fd_fdstat_get_type
net.errNoSuchInterface
net.loopbackIP
net.favoriteAddrFamily
net.ipToSockaddr
net.listenerBacklog
package net/http
net/http.cloneURLValues
net/http.cloneURL
net/http.cloneMultipartForm
net/http.cloneMultipartFileHeader
net/http.cloneOrMakeHeader
net/http.parseBasicAuth
net/http.readRequest
net/http.newBufioReader
net/http.putBufioReader
net/http.newBufioWriterSize
net/http.putBufioWriter
net/http.cloneTLSConfig
package net/textproto
net/textproto.readMIMEHeader
package os
syscall.closedir
syscall.readdir_r
os.executablePath
os.executablePath
net.newUnixFile
os.checkClonePidfd
os.ignoreSIGSYS
os.restoreSIGSYS
runtime.rand
package plugin
runtime.doInit
package reflect
reflect.ifaceIndir
reflect.valueInterface
reflect.addReflectOff
reflect.add
runtime.getStaticuint64s
reflect.rtypeOff
reflect.typesByString
reflect.toType
runtime.zeroVal
reflect.mapassign
runtime.reflectcall
package runtime
runtime.memhash
runtime.strhash
runtime.nilinterhash
runtime.typehash
reflect.typehash
runtime.stringHash
arena.runtime_arena_newArena
arena.runtime_arena_arena_New
arena.runtime_arena_arena_Slice
arena.runtime_arena_arena_Free
arena.runtime_arena_heapify
runtime.asanread
runtime.asanwrite
runtime.atomicwb
runtime.cputicks
runtime.sched
runtime.vdsoClockgettimeSym
_cgo_init
_cgo_thread_start
_cgo_sys_thread_create
_cgo_notify_runtime_init_done
_cgo_callers
_cgo_set_context_function
_cgo_yield
_cgo_pthread_key_created
_cgo_bindm
_cgo_getstackbound
runtime.iscgo
runtime.set_crosscall2
_cgo_mmap
_cgo_munmap
_cgo_sigaction
syscall.cgocaller
runtime.cgocall
reflect.makechan
runtime.chanbuf
reflect.chansend0
reflect.chanrecv
reflect.chanlen
reflect.chancap
reflect.chanclose
runtime.checkptrBase
runtime.newcoro
runtime.coroswitch
runtime.mayMoreStackPreempt
runtime.mayMoreStackMove
runtime._cgo_setenv
runtime._cgo_unsetenv
runtime.heapObjectsCanMove
runtime.getitab
runtime.convT64
runtime.convTstring
runtime.convTslice
reflect.ifaceE2I
runtime.getStaticuint64s
runtime.write
runtime._cgo_panic_internal
runtime.cgoAlwaysFalse
runtime.cgoUse
runtime.cgoKeepAlive
runtime.cgoCheckPointer
runtime.cgoCheckResult
runtime.cgoNoCallback
runtime.gobytes
runtime.gostringn
runtime.doInit
runtime.overflowError
runtime.divideError
runtime.extraMInUse
runtime.blockevent
runtime.haveHighResSleep
runtime.blockUntilEmptyFinalizerQueue
runtime.lockedOSThread
runtime.mapiterinit
reflect.mapiterinit
runtime.mapiternext
reflect.mapiternext
reflect.mapiterkey
reflect.mapiterelem
runtime.fcntl
runtime.mallocgc
reflect.unsafe_New
runtime.newarray
reflect.unsafe_NewArray
runtime.mapaccess2_fast32
runtime.mapassign_fast32
runtime.mapassign_fast32ptr
runtime.mapaccess1_fast32
runtime.mapaccess2_fast32
runtime.mapassign_fast32
runtime.mapassign_fast32ptr
runtime.mapdelete_fast32
runtime.mapaccess2_fast64
runtime.mapassign_fast64
runtime.mapassign_fast64ptr
runtime.mapaccess1_fast64
runtime.mapaccess2_fast64
runtime.mapassign_fast64
runtime.mapassign_fast64ptr
runtime.mapdelete_fast64
runtime.mapaccess2_faststr
runtime.mapassign_faststr
runtime.mapaccess1_faststr
runtime.mapaccess2_faststr
runtime.mapassign_faststr
runtime.mapdelete_faststr
runtime.makemap_small
runtime.makemap
runtime.mapaccess2
runtime.mapassign
runtime.mapdelete
runtime.mapiterinit
runtime.mapiternext
runtime.sameSizeGrowForIssue69110Test
reflect.makemap
reflect.mapaccess
reflect.mapaccess_faststr
reflect.mapassign0
reflect.mapassign_faststr0
reflect.mapdelete
reflect.mapdelete_faststr
reflect.mapiterinit
reflect.mapiternext
reflect.mapiterkey
reflect.mapiterelem
reflect.maplen
reflect.mapclear
maps.clone
maps.keys
maps.values
runtime.makemap_small
runtime.makemap
runtime.mapaccess1
runtime.mapaccess2
runtime.mapassign
runtime.mapdelete
reflect.makemap
reflect.mapaccess
reflect.mapaccess_faststr
reflect.mapassign0
reflect.mapassign_faststr0
reflect.mapdelete
reflect.mapdelete_faststr
reflect.maplen
reflect.mapclear
maps.clone
maps.keys
maps.values
runtime.typedmemmove
reflect.typedmemmove
runtime.typedslicecopy
reflect.typedslicecopy
reflect.typedmemclr
reflect.typedmemclrpartial
reflect.typedarrayclear
runtime.memclrHasPointers
runtime.findObject
reflect.verifyNotInHeapPtr
reflect.gcbits
runtime.heapObjectsCanMove
runtime.writeBarrier
sync.runtime_registerPoolCleanup
unique.runtime_registerUniqueMapCleanup
weak.runtime_registerWeakPointer
weak.runtime_makeStrongFromWeak
sync.event
runtime.pprof_memProfileInternal
runtime.pprof_blockProfileInternal
runtime.pprof_mutexProfileInternal
runtime.pprof_threadCreateInternal
runtime.pprof_goroutineProfileWithLabels
runtime.msanread
runtime.msanwrite
runtime.msanmalloc
runtime.msanfree
runtime.msanmove
runtime.netpollWaiters
libc_poll
libc_port_create
libc_port_associate
libc_port_dissociate
libc_port_getn
libc_port_alert
libc___n_pthreads
libc___mod_init
libc__Errno
libc_clock_gettime
libc_close
libc_exit
libc_getpid
libc_getsystemcfg
libc_kill
libc_madvise
libc_malloc
libc_mmap
libc_mprotect
libc_munmap
libc_open
libc_pipe
libc_raise
libc_read
libc_sched_yield
libc_sem_init
libc_sem_post
libc_sem_timedwait
libc_sem_wait
libc_setitimer
libc_sigaction
libc_sigaltstack
libc_sysconf
libc_usleep
libc_write
libc_getuid
libc_geteuid
libc_getgid
libc_getegid
libpthread___pth_init
libpthread_attr_destroy
libpthread_attr_init
libpthread_attr_getstacksize
libpthread_attr_setstacksize
libpthread_attr_setdetachstate
libpthread_attr_setstackaddr
libpthread_create
libpthread_sigthreadmask
libpthread_self
libpthread_kill
libc____errno
libc_clock_gettime
libc_exit
libc_getcontext
libc_kill
libc_madvise
libc_malloc
libc_mmap
libc_munmap
libc_open
libc_pthread_attr_destroy
libc_pthread_attr_getstack
libc_pthread_attr_init
libc_pthread_attr_setdetachstate
libc_pthread_attr_setstack
libc_pthread_create
libc_pthread_self
libc_pthread_kill
libc_raise
libc_read
libc_select
libc_sched_yield
libc_sem_init
libc_sem_post
libc_sem_reltimedwait_np
libc_sem_wait
libc_setitimer
libc_sigaction
libc_sigaltstack
libc_sigprocmask
libc_sysconf
libc_usleep
libc_write
libc_pipe2
os.executablePath
os.executablePath
libc_getrctl
libc_rctlblk_get_local_action
libc_rctlblk_get_local_flags
libc_rctlblk_get_value
libc_rctlblk_size
syscall.runtime_doAllThreadsSyscall
runtime.asmsysvicall6
os.sigpipe
syscall.now
runtime.gopanic
sync.throw
sync.fatal
runtime.throw
plugin.lastmoduleinit
main.main
os.runtime_beforeExit
runtime.gopark
runtime.goready
runtime.pprof_makeProfStack
runtime.getm
runtime.wakep
runtime.goyield
runtime.entersyscall
runtime.entersyscallblock
runtime.exitsyscall
syscall.runtime_BeforeFork
syscall.runtime_AfterFork
syscall.runtime_AfterForkInChild
syscall.runtime_BeforeExec
syscall.runtime_AfterExec
runtime.procPin
runtime.procUnpin
sync.runtime_procPin
sync.runtime_procUnpin
sync.runtime_canSpin
sync.runtime_doSpin
__tsan_init
__tsan_fini
__tsan_proc_create
__tsan_proc_destroy
__tsan_map_shadow
__tsan_finalizer_goroutine
__tsan_go_start
__tsan_go_end
__tsan_malloc
__tsan_free
__tsan_acquire
__tsan_release
__tsan_release_acquire
__tsan_release_merge
__tsan_go_ignore_sync_begin
__tsan_go_ignore_sync_end
__tsan_report_count
runtime.rand
runtime.randn
runtime.cheaprand
runtime.cheaprand64
runtime.cheaprandn
runtime.fastrand
runtime.fastrandn
runtime.fastrand64
runtime.fastrand
runtime.fastrandn
runtime.fastrand64
syscall.runtime_envs
syscall.Getpagesize
os.runtime_args
syscall.Exit
syscall.runtimeSetenv
syscall.runtimeUnsetenv
runtime.setCrashFD
runtime.getAuxv
runtime.zeroVal
reflect.typelinks
reflect.resolveNameOff
reflect.resolveTypeOff
reflect.resolveTextOff
reflect.addReflectOff
runtime.goarmsoftfp
runtime.goarm
reflect.rselect
sync.runtime_Semacquire
sync.runtime_Semrelease
sync.runtime_SemacquireRWMutexR
sync.runtime_SemacquireRWMutex
sync.runtime_SemacquireWaitGroup
sync.runtime_notifyListAdd
sync.runtime_notifyListWait
sync.runtime_notifyListNotifyAll
sync.runtime_notifyListNotifyOne
sync.runtime_notifyListCheck
os.sigpipe
os.ignoreSIGSYS
os.restoreSIGSYS
runtime.sigpanic
runtime.setsigsegv
runtime.makeslice
runtime.growslice
reflect.growslice
runtime.morestackc
runtime.gostring
runtime.add
runtime.memclrNoHeapPointers
reflect.memclrNoHeapPointers
runtime.memmove
reflect.memmove
runtime.memequal
runtime.noescape
runtime.procyield
runtime.morestack_noctxt
runtime.gcWriteBarrier2
runtime.lastmoduledatap
runtime.moduledataverify1
runtime.FuncForPC
runtime.funcInfo.entry
runtime.findfunc
runtime.srcFunc.name
runtime.funcline1
runtime.newInlineUnwinder
syscall.syscall
syscall.syscallX
syscall.syscall6
syscall.syscall9
syscall.syscall6X
syscall.syscallPtr
syscall.rawSyscall
syscall.rawSyscall6
runtime.exit
runtime.walltime
runtime.exit
syscall.syscall
syscall.syscallX
syscall.syscall6
syscall.syscall6X
syscall.syscall10
syscall.syscall10X
syscall.rawSyscall
syscall.rawSyscall6
syscall.rawSyscall6X
syscall.rawSyscall10X
libc_chdir
libc_chroot
libc_close
libc_execve
libc_fcntl
libc_forkx
libc_gethostname
libc_getpid
libc_ioctl
libc_setgid
libc_setgroups
libc_setrlimit
libc_setsid
libc_setuid
libc_setpgid
libc_syscall
libc_wait4
libc_issetugid
libc_chdir
libc_chroot
libc_dup2
libc_execve
libc_fcntl
libc_fork
libc_ioctl
libc_setgid
libc_setgroups
libc_setrlimit
libc_setsid
libc_setuid
libc_setpgid
runtime.syscall_Syscall
runtime.syscall_RawSyscall
runtime.syscall_syscall6
runtime.syscall_rawSyscall6
syscall.chdir
syscall.chroot1
syscall.closeFD
syscall.dup2child
syscall.execve
syscall.exit
syscall.fcntl1
syscall.forkx
syscall.getpid
syscall.ioctl
syscall.setgid
syscall.setgroups1
syscall.setrlimit1
syscall.setsid
syscall.setuid
syscall.setpgid
syscall.write1
runtime.syscall_sysvicall6
runtime.syscall_rawsysvicall6
runtime.syscall_chdir
runtime.syscall_chroot
runtime.syscall_close
runtime.syscall_dup2
runtime.syscall_execve
runtime.syscall_exit
runtime.syscall_fcntl
runtime.syscall_forkx
runtime.syscall_gethostname
runtime.syscall_getpid
runtime.syscall_ioctl
runtime.syscall_rawsyscall
runtime.syscall_rawsyscall6
runtime.syscall_setgid
runtime.syscall_setgroups
runtime.syscall_setrlimit
runtime.syscall_setsid
runtime.syscall_setuid
runtime.syscall_setpgid
runtime.syscall_syscall
runtime.syscall_wait4
runtime.syscall_write
syscall.compileCallback
syscall.loadsystemlibrary
syscall.loadlibrary
syscall.getprocaddress
syscall.Syscall
syscall.Syscall6
syscall.Syscall9
syscall.Syscall12
syscall.Syscall15
syscall.Syscall18
syscall.SyscallN
time.runtimeNow
time.runtimeNano
time.Sleep
time.newTimer
time.stopTimer
time.resetTimer
runtime.nanotime
time.now
runtime.nanotime
runtime.overrideWrite
time.now
time.now
runtime.traceAdvance
runtime.callers
runtime.ttiExcluded2
runtime.pprof_fpunwindExpand
runtime.traceClockNow
reflect.unsafeslice
runtime.vdsoGettimeofdaySym
runtime.vgetrandom
runtime.vgetrandom
package runtime/cgo
runtime._cgo_panic_internal
_cgo_panic
x_cgo_init
_cgo_init
x_cgo_thread_start
_cgo_thread_start
x_cgo_sys_thread_create
_cgo_sys_thread_create
x_cgo_pthread_key_created
_cgo_pthread_key_created
x_crosscall2_ptr
_crosscall2_ptr
runtime.set_crosscall2
x_cgo_bindm
_cgo_bindm
x_cgo_notify_runtime_init_done
_cgo_notify_runtime_init_done
x_cgo_set_context_function
_cgo_set_context_function
_cgo_yield
x_cgo_getstackbound
_cgo_getstackbound
x_cgo_callers
_cgo_callers
environ
__progname
environ
__progname
runtime.iscgo
_cgo_libc_setegid
syscall.cgo_libc_setegid
_cgo_libc_seteuid
syscall.cgo_libc_seteuid
_cgo_libc_setregid
syscall.cgo_libc_setregid
_cgo_libc_setresgid
syscall.cgo_libc_setresgid
_cgo_libc_setresuid
syscall.cgo_libc_setresuid
_cgo_libc_setreuid
syscall.cgo_libc_setreuid
_cgo_libc_setgroups
syscall.cgo_libc_setgroups
_cgo_libc_setgid
syscall.cgo_libc_setgid
_cgo_libc_setuid
syscall.cgo_libc_setuid
x_cgo_mmap
_cgo_mmap
x_cgo_munmap
_cgo_munmap
environ
__progname
__ps_strings
__guard_local
x_cgo_setenv
runtime._cgo_setenv
x_cgo_unsetenv
runtime._cgo_unsetenv
x_cgo_sigaction
_cgo_sigaction
package runtime/debug
runtime.setCrashFD
package runtime/metrics
runtime/metrics.runtime_readMetricNames
package runtime/pprof
runtime.pprof_goroutineProfileWithLabels
runtime.pprof_memProfileInternal
runtime.pprof_blockProfileInternal
runtime.pprof_mutexProfileInternal
runtime.pprof_threadCreateInternal
runtime.pprof_fpunwindExpand
runtime.pprof_makeProfStack
runtime.blockevent
package sync
runtime.blockUntilEmptyFinalizerQueue
runtime.randn
sync.poolCleanup
syscall.hasWaitingReaders
package syscall
syscall.getsockopt
syscall.setsockopt
libc_Getpgid
libc_Getpgrp
os.checkClonePidfd
libc_Getpgid
libc_Getpgrp
syscall.fd_fdstat_get_flags
syscall.fd_fdstat_get_type
syscall.ioctlPtr
syscall.sysctl
syscall.closedir
syscall.readdir_r
syscall.fdopendir
syscall.unlinkat
syscall.openat
syscall.fstatat
syscall.msync
syscall.fcntl
syscall.writev
syscall.unlinkat
syscall.openat
syscall.fstatat
syscall.mmap
syscall.utimensat
libc_flock
runtime.entersyscall
runtime.exitsyscall
syscall.RawSyscall
syscall.RawSyscall6
syscall.Syscall
syscall.Syscall6
syscall.prlimit
runtime.write
libc_fcntl
libc_Dup2
libc_pipe
libc_readlink
libc_utimes
libc_utimensat
libc_unlinkat
libc_getcwd
libc_getgroups
libc_setgroups
libc_getdirent
libc_wait4
libc_fsync_range
libc_bind
libc_connect
libc_Getkerninfo
libc_getsockopt
libc_Listen
libc_setsockopt
libc_socket
libc_socketpair
libc_getpeername
libc_getsockname
libc_recvfrom
libc_sendto
libc_Shutdown
libc_nrecvmsg
libc_nsendmsg
libc_accept
libc_Openat
libc_ptrace64
libc_Acct
libc_Chdir
libc_Chmod
libc_Chown
libc_Chroot
libc_Close
libc_Dup
libc_Faccessat
libc_Fchdir
libc_Fchmod
libc_Fchmodat
libc_Fchown
libc_Fchownat
libc_Fpathconf
libc_Fstat
libc_Fstatfs
libc_Ftruncate
libc_Getgid
libc_Getpid
libc_Geteuid
libc_Getegid
libc_Getppid
libc_Getpriority
libc_Getrlimit
libc_Getrusage
libc_Getuid
libc_Kill
libc_Lchown
libc_Link
libc_Lstat
libc_Mkdir
libc_Mkdirat
libc_Mknodat
libc_Open
libc_pread
libc_pwrite
libc_read
libc_Reboot
libc_Rename
libc_Renameat
libc_Rmdir
libc_lseek
libc_Setegid
libc_Seteuid
libc_Setgid
libc_Setuid
libc_Setpgid
libc_Setpriority
libc_Setregid
libc_Setreuid
libc_setrlimit
libc_Stat
libc_Statfs
libc_Symlink
libc_Truncate
libc_Umask
libc_Unlink
libc_Uname
libc_write
libc_writev
libc_gettimeofday
libc_mmap
libc_munmap
libc_pipe2
libc_accept4
libc_Getcwd
libc_getgroups
libc_setgroups
libc_fcntl
libc_accept
libc___xnet_sendmsg
libc_Access
libc_Adjtime
libc_Chdir
libc_Chmod
libc_Chown
libc_Chroot
libc_Close
libc_Dup
libc_Fchdir
libc_Fchmod
libc_Fchown
libc_Fpathconf
libc_Fstat
libc_Getdents
libc_Getgid
libc_Getpid
libc_Geteuid
libc_Getegid
libc_Getppid
libc_Getpriority
libc_Getrlimit
libc_Getrusage
libc_Gettimeofday
libc_Getuid
libc_Kill
libc_Lchown
libc_Link
libc___xnet_listen
libc_Lstat
libc_Mkdir
libc_Mknod
libc_Nanosleep
libc_Open
libc_Pathconf
libc_pread
libc_pwrite
libc_read
libc_Readlink
libc_Rename
libc_Rmdir
libc_lseek
libc_sendfile
libc_Setegid
libc_Seteuid
libc_Setgid
libc_Setpgid
libc_Setpriority
libc_Setregid
libc_Setreuid
libc_setrlimit
libc_Setsid
libc_Setuid
libc_shutdown
libc_Stat
libc_Symlink
libc_Sync
libc_Truncate
libc_Fsync
libc_Ftruncate
libc_Umask
libc_Unlink
libc_utimes
libc___xnet_bind
libc___xnet_connect
libc_mmap
libc_munmap
libc___xnet_sendto
libc___xnet_socket
libc___xnet_socketpair
libc_write
libc_writev
libc___xnet_getsockopt
libc_getpeername
libc_getsockname
libc_setsockopt
libc_recvfrom
libc___xnet_recvmsg
libc_getexecname
libc_utimensat
package time
time.nextStdChunk
time.Time.abs
time.absClock
time.absDate
time.newTimer
time.stopTimer
time.resetTimer
runtime.haveHighResSleep
time.runtimeNow
time.runtimeNano
time.Now
time.Time.abs
time.absClock
time.absDate
time.registerLoadFromEmbeddedTZData
package time/tzdata
time.registerLoadFromEmbeddedTZData
package unique
unique.runtime_registerUniqueMapCleanup
package weak
weak.runtime_registerWeakPointer
weak.runtime_makeStrongFromWeak