Golang: How to use syscall.Syscall on Linux?
问题 There is a very nice description about loading a shared library and calling a function with the syscall package on Windows (https://github.com/golang/go/wiki/WindowsDLLs). However, the functions LoadLibrary and GetProcAddress that are used in this description are not available in the syscall package on Linux. I could not find documentation about how to do this on Linux (or Mac OS). Thanks for help 回答1: Linux syscalls are used directly without loading a library, exactly how depends on which