c - Linux 上的 pthread 执行

标签 c linux pthreads

我开始在 Linux 上进行 pthread 编程,在第一个程序中我就完全糊涂了。下面是我正在运行的程序

#include <stdio.h>
#include <stdlib.h>
#include <pthread.h>

void *print_message_function( void *ptr );

int main(){
 pthread_t thread1, thread2;
 char *message1 = "Thread 1";
 char *message2 = "Thread 2";
 int  iret1, iret2;

/* Create independent threads each of which will execute function */

 iret1 = pthread_create( &thread1, NULL, print_message_function, (void*) message1);
 iret2 = pthread_create( &thread2, NULL, print_message_function, (void*) message2);

 /* Wait till threads are complete before main continues. Unless we  */
 /* wait we run the risk of executing an exit which will terminate   */
 /* the process and all threads before the threads have completed.   */

 pthread_join( thread1, NULL);
 printf("amit");
 pthread_join( thread2, NULL); 

 printf("Thread 1 returns: %d\n",iret1);
 printf("Thread 2 returns: %d\n",iret2);
 exit(0);
}

void *print_message_function( void *ptr ){
 char *message;
 message = (char *) ptr;
 printf("%s \n", message);
}

我想知道的第一件事是线程执行的顺序不是顺序的??

第二件事是我故意把 print("amit");看到 main 在 thread1 终止期间确实停止了,但在输出中我们可以看到 printf 语句首先执行。整个过程的输出为

线程 1

线程 2

amitThread 1 返回:0

线程 2 返回:0

最佳答案

您说得对,线程执行的顺序不是连续的。在某种程度上,这就是使用线程的全部意义所在,即同时运行其他任务。

您看到的输出符合预期,可能会有所不同。

也许这会有所帮助:

   main            thread1     thread2
    |                
    |--create--------+-----------\
    |                |           |   
    |            "Thread 1"      |   "Thread 2" can
    |                |           |<- occur anywhere
    |               /            |   along this line
   join(1) ---------             |
    |                            |
    |                            |
  "amit"                         |
    |                            |
    |                            |
   join(2) ---------------------/
    |
    |
"Thread 1 returns"
"Thread 2 returns"
    |
  exit(0)

您唯一的保证是:

  • "Thread 1"将始终在 "amit"之前打印(因为 pthread_join() 在 main 之前等待线程 1 结束程序可以继续)
  • Thread X returns ...”语句将始终在两个线程都终止后结束。

关于c - Linux 上的 pthread 执行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4991470/

相关文章:

c - 使用 ANTLR C 目标,如何使用操作来打印 token ?

C - 多重定义 main() K&R eclipse

c++ - pthread_create ENOMEM 大约 32000 个线程

将 fork 转换为 pthread

c - 将 pthread.h 添加到 nds 项目 makefile

c - 流数据的缓冲

c - 将文件加载到 Char* 数组中

linux - 将文件从共享驱动器移动到 SAS 服务器

linux - 无法运行 Gala 窗口管理器

linux - 访问不包含桌面的监视器