gpt4 book ai didi

linux - 在 C 程序中调用 pppd 会阻塞线程

转载 作者:太空宇宙 更新时间:2023-11-04 11:44:17 28 4
gpt4 key购买 nike

我有一个从 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
}

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

最佳答案

当 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。

Detect ppp link thread

关于linux - 在 C 程序中调用 pppd 会阻塞线程,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58311960/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com