作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
例如unistd_64.h中有一些宏
...
#define __NR_semget 64
#define __NR_semop 65
#define __NR_semctl 66
#define __NR_shmdt 67
#define __NR_msgget 68
#define __NR_msgsnd 69
...
当我输入数字时
64
,将会输出
__NR_semget 或 semget
c/cpp源代码更好,谢谢!
最佳答案
系统调用名称和编号映射很大程度上取决于您所使用的体系结构。
ausyscall - 提供给定系统调用号的映射。也许你可以这样做:
system("ausyscall 64 x86_64")
这应该返回semget
关于c - 如何根据文件unistd_64.h或unistd_32.h中的编号输出系统调用的名称?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24924313/
我是一名优秀的程序员,十分优秀!