glibc源码分析之chmod系列函数

来源:互联网 发布:mac开机后怎么换系统 编辑:程序博客网 时间:2024/05/18 16:35

glibc中关于chmod系列的函数有chmod,fchmod。它们都是用于改变文件的属性。
在glibc中chmod和fchmod两个函数都是使用脚本生成的系统调用的封装函数。
它们生成的.S文件内容分别为:

#define SYSCALL_NAME chmod#define SYSCALL_NARGS 2#define SYSCALL_SYMBOL __chmod#define SYSCALL_CANCELLABLE 0#define SYSCALL_NOERRNO 0#define SYSCALL_ERRVAL 0#include <syscall-template.S>weak_alias (__chmod, chmod)hidden_weak (chmod)
#define SYSCALL_NAME fchmod#define SYSCALL_NARGS 2#define SYSCALL_SYMBOL __fchmod#define SYSCALL_CANCELLABLE 0#define SYSCALL_NOERRNO 0#define SYSCALL_ERRVAL 0#include <syscall-template.S>weak_alias (__fchmod, fchmod)hidden_weak (fchmod)