From 0cd430ace416e69446cdf170e45fb1a5489590d9 Mon Sep 17 00:00:00 2001 From: Stelian Ionescu Date: Mon, 8 Jul 2013 14:21:57 +0200 Subject: [PATCH] Add back ISYS:EXECVP --- src/syscalls/ffi-functions-unix.lisp | 4 ++++ src/syscalls/pkgdcl.lisp | 1 + 2 files changed, 5 insertions(+) diff --git a/src/syscalls/ffi-functions-unix.lisp b/src/syscalls/ffi-functions-unix.lisp index b2d89b6..a52ecd4 100644 --- a/src/syscalls/ffi-functions-unix.lisp +++ b/src/syscalls/ffi-functions-unix.lisp @@ -676,6 +676,10 @@ processes mapping the same region." (path sstring) (argv :pointer)) +(defsyscall (execvp "execvp") :int + (file sstring) + (argv :pointer)) + (defsyscall (%waitpid "waitpid") pid-t (pid pid-t) (status :pointer) diff --git a/src/syscalls/pkgdcl.lisp b/src/syscalls/pkgdcl.lisp index e85ea1b..23907f6 100644 --- a/src/syscalls/pkgdcl.lisp +++ b/src/syscalls/pkgdcl.lisp @@ -561,6 +561,7 @@ (:export ;; Process creation and info #:fork #:execv + #:execvp #:waitpid #:getpid #:getppid -- 2.11.4.GIT