免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 2895 | 回复: 3
打印 上一主题 下一主题

Ubuntu10.04版本的内核头文件 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2010-08-12 16:29 |只看该作者 |倒序浏览
这是Ubuntu10.04版本的内核头文件 include/asm-generic/unistd.h 的部分源码,其中的
#ifndef __SYSCALL
#define __SYSCALL(x, y)
#endif
以及
#define __NR_io_setup 0
__SYSCALL(__NR_io_setup, sys_io_setup)
的宏定义看不懂,请教以上的两个宏是什么意思,有什么意义?不胜感激!

=============================
#if !defined(_ASM_GENERIC_UNISTD_H) || defined(__SYSCALL)
#define _ASM_GENERIC_UNISTD_H

#include <asm/bitsperlong.h>

/*
* This file contains the system call numbers, based on the
* layout of the x86-64 architecture, which embeds the
* pointer to the syscall in the table.
*
* As a basic principle, no duplication of functionality
* should be added, e.g. we don't use lseek when llseek
* is present. New architectures should use this file
* and implement the less feature-full calls in user space.
*/

#ifndef __SYSCALL
#define __SYSCALL(x, y)
#endif

#if __BITS_PER_LONG == 32
#define __SC_3264(_nr, _32, _64) __SYSCALL(_nr, _32)
#else
#define __SC_3264(_nr, _32, _64) __SYSCALL(_nr, _64)
#endif

#define __NR_io_setup 0
__SYSCALL(__NR_io_setup, sys_io_setup)
#define __NR_io_destroy 1
__SYSCALL(__NR_io_destroy, sys_io_destroy)
#define __NR_io_submit 2
__SYSCALL(__NR_io_submit, sys_io_submit)
#define __NR_io_cancel 3
__SYSCALL(__NR_io_cancel, sys_io_cancel)

论坛徽章:
0
2 [报告]
发表于 2010-08-13 15:19 |只看该作者
#ifndef __SYSCALL
#define __SYSCALL(x, y)
#endif
这个应该防止是某些情况下编译不过吧,让他什么也不做。这个宏肯定是有的。

以及
#define __NR_io_setup 0
__SYSCALL(__NR_io_setup, sys_io_setup)
这个宏就是系统调用的宏,你自己去看看资料

论坛徽章:
0
3 [报告]
发表于 2010-08-14 15:14 |只看该作者
那有什么资料,可以介绍下吗

论坛徽章:
0
4 [报告]
发表于 2010-08-15 09:58 |只看该作者
看不懂该宏定义#define __SYSCALL(x, y)
它只定义了这个带参数宏函数名__SYSCALL(x, y),但是又没有宏展开的部分。
而且下面又使用了该宏
#define __NR_io_setup 0
__SYSCALL(__NR_io_setup, sys_io_setup)
不知道它要如何展开?能否帮我解释一下
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP