今天解决了一下在执行execv()函数时,输出errno时,出现的permisssion denied 或者bad address.的提示。
注: 我测试的系统是solaris 9。
代码如下:
#include <iostream>
#include <unistd.h>
#include <sys/types.h>
#include <errno.h>
using namespace std;
//char *init_argv[] = {"ls", "/export/home", NULL};
char *init_argv[] = {NULL};
int main(int argc, char *argv[])
{
int ret = execv("/usr/bin/ls", init_argv);
if (ret < 0)
{
cout << "execv failed" << endl;
cout << "errno is " << errno << endl;
}
return 0;
}
int ret = execv("/usr/bin/ls", NULL);
execv()函数的第二个参数没有用二维字符数组。
再看下execv()的声明:
定义函数:int execv (const char * path, char * const argv[]);