我有一个从 C 程序中调用的脚本。我在启动线程之前执行此操作,因为在这些线程启动之前我需要 ppp 链接。我执行以下操作:
int main(){
int ret = 0;
ret = WEXITSTATUS(system("./nbiot_telit_ppp_installer.sh"));
printf("ret = %d\r\n", ret);
// Never gets here after ppp is up
/* Start the threads */
==> starts thread-1
==> starts thread-2
}
我尝试在 thread-1 中调用脚本,如下所示:
void *thread1(void *thPtr)
{
int ret = 0;
ret = WEXITSTATUS(system("./nbiot_telit_ppp_installer.sh"));
printf("ret = %d\r\n", ret);
// Never gets here after ppp is up
/* Some aws init code */
while(1){
}
}
关于脚本的成功,我得到以下信息:
Script /etc/ppp/ip-up started (pid 7771)
Script /etc/ppp/ip-up finished (pid 7771), status = 0x0
在上面之后,不会执行超出或低于它的代码。它仅在脚本终止时返回。
无论 ppp 链接是成功还是失败,我都想在我的 c 代码中获取“状态”值并据此做出决定。我有在裸机上工作的经验,但对 Linux 还是很陌生。如果能从专家那里获得一些关于这个问题的见解以及如何实现这一目标的建议,那就太好了。