多线程编程 创建了 两个线程 为什么 不交替执行…… what‘s the matter with CPU?
- main()
- {
- printf("enter the main thread\n");
- pthread_t tid1, tid2;
- int rc1 = 0, rc2 = 0;
- rc1 = pthread_create(&tid1, NULL, thread_send_msg(), NULL);
- printf("***********\n");
- if ( rc1 != NULL )
- {
- printf("thread_send_msg create\n");
- }
- rc2 = pthread_create(&tid2, NULL, thread_tran_msg(), NULL);
- if ( rc2 != NULL)
- {
- printf("thread_tran_msg create\n");
- }
- }
复制代码为什么直接跳进 thread_send_msg() 之后 就不出来了 ?
连printf("***********\n"); 都不打印…… 伤心地。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
伤不起啊
说下
环境 是 VM+ F10 不是ARM
在线程里 也尝试 sleep(10);
但是其他线程根本不接手.