自己写的一个小轨范,用来实现liunx中多线程程的挪用.例子清楚易懂
/*
该函数实现了线程的挪用,多线程的用法
*/
#include
#include
#include
#include
#include
void *thread_function(void *arg);
void *thread_function1(void *arg);
char message = "Hello World";
int main() {
int res;
pthread_t a_thread;
void *thread_result;
int thread_num1=0;
int thread_num2=1;
//第一个线程
res = pthread_create(&a_thread, NULL, thread_function, (void *)thread_num1);
if (res != 0) {
perror("Thread creation failed");
exit(EXIT_FAILURE);
}
printf("Waiting for first thread to finish……n");
res = pthread_join(a_thread, &thread_result); //挪用函数thread——function
if (res != 0) {
perror("Thread join failed");
exit(EXIT_FAILURE);
}
printf("First Thread joined, it returned %sn", (char *)thread_result);
printf("Message is now %sn", message);
//第二个线程
res = pthread_create(&a_thread, NULL, thread_function1, (void *)thread_num2);
if (res != 0) {
perror("Thread creation failed");
exit(EXIT_FAILURE);
}
printf("Waiting for second thread to finish……n");
res = pthread_join(a_thread, &thread_result); //挪用函数thread——function
if (res != 0) {
perror("Thread join failed");
exit(EXIT_FAILURE);
}
printf("Second Thread joined, it returned %sn", (char *)thread_result);
printf("Message is now %sn", message);
exit(EXIT_SUCCESS);
}
void *thread_function(void *arg) {
printf("thread function is runningn");
printf("*** &&&& ****n");
strcpy(message, "Bye!");
pthread_exit("Thank you for the CPU time");
}
void *thread_function1(void *arg) {
printf("thread function in second thread is runningn");
sleep(1);
strcpy(message, "Bye!");
pthread_exit("Thank you for the CPU time");}