0

我有一个从 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 还是很陌生。如果能从专家那里获得一些关于这个问题的见解以及如何实现这一目标的建议,那就太好了。

4

1 回答 1

0

当 ppp 链接起来时,它执行一个文件 /etc/ppp/ip-up 当它关闭时,它执行 /etc/ppp/ip-down。如果你在这些文件中放了一些东西,你可以把它用作一个标志。

我的 ip-up 文件:

#!/bin/sh
echo ppp is up > /var/run/ppp-up-flag

我的 ip-down 文件:

#!/bin/sh
rm /var/run/ppp-up-flag

现在我的程序可以测试 /var/run/ppp-up-flag。

检测 ppp 链接线程

于 2019-10-18T22:00:15.737 回答