From: Lionel Landwerlin Date: Sat, 17 Jul 2010 21:53:31 +0000 (-0700) Subject: posix: Add execlp method X-Git-Tag: 0.9.4~45 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0ce45f0049316042bab8d5de47a486ae92737299;p=thirdparty%2Fvala.git posix: Add execlp method Fixes bug 623600. --- diff --git a/vapi/posix.vapi b/vapi/posix.vapi index cae1d3f61..b0d1f98a1 100644 --- a/vapi/posix.vapi +++ b/vapi/posix.vapi @@ -1515,6 +1515,8 @@ namespace Posix { [CCode (cheader_filename = "unistd.h")] public int execl (string path, params string[] arg); [CCode (cheader_filename = "unistd.h")] + public int execlp (string path, params string[] arg); + [CCode (cheader_filename = "unistd.h")] public int pipe ([CCode (array_length = false, null_terminated = false)] int[] pipefd); [CCode (cheader_filename = "unistd.h")] public ssize_t read (int fd, void* buf, size_t count);