多线程编程 创建了 两个线程 为什么 不交替执行…… what‘s the matter with CPU?

发布于 2022-10-15 08:29:43 字数 1055 浏览 16 评论 0

  1. main()
  2. {
  3.     printf("enter the main thread\n");
  4.     pthread_t tid1, tid2;
  5.     int rc1 = 0, rc2 = 0;
  6.     rc1 = pthread_create(&tid1, NULL, thread_send_msg(), NULL);
  7.         printf("***********\n");
  8.     if ( rc1 != NULL )
  9.     {
  10.         printf("thread_send_msg create\n");
  11.     }
  12.     rc2 = pthread_create(&tid2, NULL, thread_tran_msg(), NULL);
  13.     if ( rc2 != NULL)
  14.     {
  15.         printf("thread_tran_msg create\n");
  16.     }
  17. }

复制代码为什么直接跳进 thread_send_msg() 之后  就不出来了 ?
连printf("***********\n");  都不打印……  伤心地。

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

ㄖ落Θ余辉 2022-10-22 08:29:43

伤不起啊

野生奥特曼 2022-10-22 08:29:43

说下  
环境 是 VM+ F10  不是ARM

在线程里 也尝试  sleep(10);

但是其他线程根本不接手.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文