码迷,mamicode.com
首页 > 其他好文 > 详细

NDK下vfork+execl启动程序

时间:2015-07-27 12:34:51      阅读:123      评论:0      收藏:0      [点我收藏+]

标签:

        pid_t _pid = vfork();
        if (_pid == 0)
        {//child process
            LOGV("[ContextSharing]in child process.");
            std::string s = std::string(MODEL_DIRECTORY) + "alljoyn_sharer";
            if (0 == chmod(s.c_str(), 00777))
            {
                if (execl(s.c_str(), "execl", s.c_str(), (char *)0) == -1)
                {
                    LOGV("[ContextSharing]execl() failed! %s", strerror(errno));
                }
            }
         }

  

如果使用

execl(s.c_str(), NULL)

则会崩溃,原因未知。

 

 

NDK下vfork+execl启动程序

标签:

原文地址:http://www.cnblogs.com/chutianyao/p/3374386.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!