Warning: file_get_contents(/data/phpspider/zhask/data//catemap/2/linux/27.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181

Warning: file_get_contents(/data/phpspider/zhask/data//catemap/0/assembly/6.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
64位版本的socketcall系统调用Linux_Linux_Assembly_Linux Kernel_Nasm - Fatal编程技术网

64位版本的socketcall系统调用Linux

64位版本的socketcall系统调用Linux,linux,assembly,linux-kernel,nasm,Linux,Assembly,Linux Kernel,Nasm,在32位中,有一个名为socketcall的系统调用,它是socket系统调用的通用内核入口点。然而,在64位模式下,我似乎找不到相应的系统调用。我是否可以使用具有相同功能的类似系统调用?状态: 在某些体系结构上——例如x86-64和ARM——没有socketcall()系统调用;相反,套接字(2)、接受(2)、绑定(2)等实际上是作为单独的系统调用实现的 不,在64位模式下,您有单独的系统调用。

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

状态:

在某些体系结构上——例如x86-64和ARM——没有socketcall()系统调用;相反,套接字(2)、接受(2)、绑定(2)等实际上是作为单独的系统调用实现的


不,在64位模式下,您有单独的系统调用。