浏览代码

implement fexecve

Rich Felker 14 年之前
父节点
当前提交
f2374ed852
共有 2 个文件被更改,包括 11 次插入0 次删除
  1. 1 0
      include/unistd.h
  2. 10 0
      src/process/fexecve.c

+ 1 - 0
include/unistd.h

@@ -86,6 +86,7 @@ int execle(const char *, ...);
 int execl(const char *, ...);
 int execvp(const char *, char *const []);
 int execlp(const char *, ...);
+int fexecve(int, char *const [], char *const []);
 void _exit(int);
 
 pid_t getpid(void);

+ 10 - 0
src/process/fexecve.c

@@ -0,0 +1,10 @@
+#include <unistd.h>
+#include <stdio.h>
+
+int fexecve(int fd, char *const argv[], char *const envp[])
+{
+	static const char proc[] = "/proc/self/fd/%d";
+	char buf[sizeof proc + 3*sizeof(int)];
+	snprintf(buf, sizeof buf, proc, fd);
+	return execve(buf, argv, envp);
+}