⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 condvar-solution.c

📁 Pthreads是Intel开发的Linux下的多线程编译工具
💻 C
字号:
/*   This simple code demonstrates Pthreads condition variables   This code computes sum of Mercator's series.   Mercator's series expression for ln( x + 1 ) function is:       ln( x + 1 ) = x - x^2/2 + x^3/3 - x^4/4 + x^5/5 - ...      for -1 < x <= 1.*/#include "pthread.h"#include <stdio.h>      // Header file for standard file i/o.//#include <conio.h>#include <math.h>       #define NUM_THREADS 4#define SERIES_MEMBER_COUNT 50000//arrray of threads structurespthread_t g_threads[NUM_THREADS];pthread_t g_master_thread;struct ThreadParams{   //unique thread ID   int id;};//array of structures with threads paramsThreadParams g_thread_params[NUM_THREADS];//conditional variable to signal main thread is worker threads are donepthread_cond_t g_cond;//mutex that should be paired with conditional variablepthread_mutex_t g_mutex_CS;double sums[NUM_THREADS];double x = 1.0, res = 0.0;int threadNum;double getMember(int n, double x){   double numerator = 1;   for( int i=0; i<n; i++ )      numerator = numerator*x;   if ( n % 2 == 0 )      return ( - numerator / n );   else      return numerator/n;}void * threadProc(void* vpar){    ThreadParams *par = (ThreadParams *)vpar;      //identifying the current thread   int threadIndex = par->id;   sums[threadIndex] = 0;   for(int i=threadIndex; i<SERIES_MEMBER_COUNT;i+=NUM_THREADS)      sums[threadIndex] += getMember(i+1, x);   //Signal Master thread that one more processing thread is done   pthread_mutex_lock( &g_mutex_CS);   threadNum++;   if (threadNum == NUM_THREADS) pthread_cond_signal( &g_cond );   pthread_mutex_unlock( &g_mutex_CS);   return 0;}void*  masterThreadProc(void  *par){   pthread_mutex_lock( &g_mutex_CS);   while (threadNum != NUM_THREADS)      pthread_cond_wait( &g_cond, &g_mutex_CS );    pthread_mutex_unlock( &g_mutex_CS);   res = 0;   for(int i=0; i<NUM_THREADS; i++)      res += sums[i];   return 0;}int main(){   pthread_cond_init( &g_cond, NULL );   threadNum = 0;   pthread_mutex_init( &g_mutex_CS, NULL );         for(int i=0; i<NUM_THREADS;i++)   {      g_thread_params[i].id = i;         int ret = pthread_create(&g_threads[i],NULL, threadProc,&g_thread_params[i]);      if(ret)         return 0;   }   int ret = pthread_create(&g_master_thread,NULL, masterThreadProc, NULL);   if(ret)      return 0;      //int pthread_join(tid - handle of joinable thread, val_ptr - exit value returned by joined thread);   pthread_join( g_master_thread, NULL);          printf("Count of ln(1 + x) Mercator's series members is %d\n",SERIES_MEMBER_COUNT);   printf("Argument value of x is %f\n", (double)x);   printf("Result is %10.8f\n", res);   printf("By function call ln(1 + %f) = %10.8f\n",x, log(1+x));   printf("Press any key ... ");   getchar();}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -