64 位版本的 socketcall 系统调用 Linux

64 bit version of socketcall system call Linux

在32位系统中,有一个名为socketcall的系统调用,它是socket系统调用的通用内核入口点。但是,在64位模式下,我好像找不到对应的系统调用。是否有我可以使用的具有相同功能的类似系统调用?

man page 状态:

On a some architectures--for example, x86-64 and ARM--there is no socketcall() system call; instead socket(2), accept(2), bind(2), and so on really are implemented as separate system calls.