1 /*
2 * linux/lib/execve.c
3 *
4 * (C) 1991 Linus Torvalds
5 */
6
7 #define __LIBRARY__
8 #include <unistd.h> // Linux标准头文件。定义了各种符号常数和类型,并声明了各种函数�
// 如定义了__LIBRARY__,则还含系统调用号和内嵌汇编_syscall0()等�
9
//// 加载并执行子进程(其他程序)函数�
// 下面该调用宏函数对应�int execve(const char * file, char ** argv, char ** envp)�
// 参数�file - 被执行程序文件名�argv - 命令行参数指针数组;envp - 环境变量指针数组�
// 直接调用了系统中�int 0x80,参数是__NR_execve。参�include/unistd.h�fs/exec.c程序�
10 _syscall3(int,execve,const char *,file,char **,argv,char **,envp)
11