代码搜索:execve

找到约 549 项符合「execve」的源代码

代码结果 549
www.eeworm.com/read/354342/10362386

c execve.c

/* * linux/lib/execve.c * * (C) 1991 Linus Torvalds */ #define __LIBRARY__ #include _syscall3(int,execve,const char *,file,char **,argv,char **,envp)
www.eeworm.com/read/352754/10515034

c execve.c

/* * linux/lib/execve.c * * Copyright (C) 1991, 1992 Linus Torvalds */ #define __LIBRARY__ #include _syscall3(int,execve,const char *,file,char **,argv,char **,envp)
www.eeworm.com/read/159625/10632437

c execve.c

/* * linux/lib/execve.c * * (C) 1991 Linus Torvalds */ #define __LIBRARY__ #include _syscall3(int,execve,const char *,file,char **,argv,char **,envp)
www.eeworm.com/read/419410/10870341

c execve.c

#include #include #include int main(int argc,char * argv[],char ** environ) { pid_t pid; int stat_val; printf("Exec example!\n"); pid = fork();
www.eeworm.com/read/273025/10931074

c execve.c

/* * linux/lib/execve.c * * (C) 1991 Linus Torvalds */ #define __LIBRARY__ #include _syscall3(int,execve,const char *,file,char **,argv,char **,envp)
www.eeworm.com/read/416039/11043736

c execve.c

#define __LIBRARY__ #include _syscall3(int,execve,const char *,file,char **,argv,char **,envp)
www.eeworm.com/read/416023/11044136

c execve.c

#include #include #include int main() { char *arg[]={"env",NULL}; char *envp[]={"PATH=/tmp","USER=sunq",NULL}; if(fork()==0){ if(("b
www.eeworm.com/read/217322/6964932

c execve.c

#include #include #include int main() { char *arg[]={"env",NULL}; char *envp[]={"PATH=/tmp","USER=sunq",NULL}; if(fork()==0){ if(("b
www.eeworm.com/read/469281/6980024

c execve.c

/* * linux/lib/execve.c * * (C) 1991 Linus Torvalds */ #define __LIBRARY__ #include // Linux 标准头文件。定义了各种符号常数和类型,并申明了各种函数。 // 如定义了__LIBRARY__,则还包括系统调用号和内嵌汇编_syscall0()等。 //// 加载并执行子进程(其它程
www.eeworm.com/read/467230/7008020

exe execve.exe