glibc库函数,系统调用API
Posted 还在
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了glibc库函数,系统调用API相关的知识,希望对你有一定的参考价值。
glibc封装了大部分系统API,我们一般都是使用glibc封装的接口进行系统调用,碰到一些没有封装的接口,可以通过这个
函数syscall 进行系统调用。
1 /* Invoke `system call\' number SYSNO, passing it the remaining arguments. 2 This is completely system-dependent, and not often useful. 3 4 In Unix, `syscall\' sets `errno\' for all errors and most calls return -1 5 for errors; in many systems you cannot pass arguments or get return 6 values for all system calls (`pipe\', `fork\', and `getppid\' typically 7 among them). 8 9 In Mach, all system calls take normal arguments and always return an 10 error code (zero for success). */ 11 extern long int syscall (long int __sysno, ...) __THROW;
以上是关于glibc库函数,系统调用API的主要内容,如果未能解决你的问题,请参考以下文章
使用库函数API和C代码中嵌入汇编代码两种方式使用同一个系统调用
使用库函数API和C代码中嵌入汇编代码两种方式使用同一个系统调用
实验--使用库函数API和C代码中嵌入汇编代码两种方式使用同一个系统调用(杨光)