কম্পিউটার

থ্রেড সিঙ্ক্রোনাইজেশন ব্যবহার করে ক্রমানুসারে সংখ্যা মুদ্রণ করুন


এখানে আমরা দেখব কিভাবে বিভিন্ন থ্রেড ব্যবহার করে সঠিক ক্রমানুসারে সংখ্যা প্রিন্ট করা যায়। এখানে আমরা n সংখ্যক থ্রেড তৈরি করব, তারপর সেগুলিকে সিঙ্ক্রোনাইজ করব। ধারণা হল, প্রথম থ্রেড 1 প্রিন্ট করবে, তারপর দ্বিতীয় থ্রেড 2 প্রিন্ট করবে ইত্যাদি। যখন একটি থ্রেড প্রিন্ট করার চেষ্টা করছে, তখন এটি সংস্থানটিকে লক করে দেবে, তাই কোনো থ্রেড সেই অংশটি ব্যবহার করতে পারবে না৷

উদাহরণ

#include <pthread.h>
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
pthread_mutex_t mutex = PTHREAD_MUTEX_INITIALIZER;
pthread_cond_t* cond = NULL;
int threads;
volatile int count = 0;
void* sync_thread(void* num) { //this function is used to synchronize the threads
   int thread_number = *(int*)num;
   while (1) {
      pthread_mutex_lock(&mutex); //lock the section
      if (thread_number != count) { //if the thread number is not same as count, put all thread
          except one into waiting state
         pthread_cond_wait(&cond[thread_number], &mutex);
      }
      printf("%d ", thread_number + 1); //print the thread number
         count = (count+1)%(threads);
      // notify the next thread
      pthread_cond_signal(&cond[count]);
      pthread_mutex_unlock(&mutex);
   }
   return NULL;
}
int main() {
   pthread_t* thread_id;
   volatile int i;
   int* thread_arr;
   printf("\nEnter number of threads: ");
      scanf("%d", &threads);
   // allocate memory to cond (conditional variable) thread id's and array of size threads
   cond = (pthread_cond_t*)malloc(sizeof(pthread_cond_t) * threads);
   thread_id = (pthread_t*)malloc(sizeof(pthread_t) * threads);
   thread_arr = (int*)malloc(sizeof(int) * threads);
   for (i = 0; i < threads; i++) { //create threads
      thread_arr[i] = i;
      pthread_create(&thread_id[i], NULL, sync_thread, (void*)&thread_arr[i]);
   }
   // waiting for thread
   for (i = 0; i < threads; i++) {
      pthread_join(thread_id[i], NULL);
   }
   return 0;
}

আউটপুট

$ g++ test.cpp -lpthread
$ ./a.out

Enter number of threads: 5
1 2 3 4 5 1 2 3 4 5 1 2 3 4 5 1 2 3 4 5 1 2 3 4 5 1 2 3 4 5 1 2 3 4 5 1 2 3 4 5 1 2 3
4 5 1 2 3 4 5 1 2 3 4 5 1 2 3 4 5 1 2 3 4 5 1 2 3 4 5 1 2 3 4 5 1 2 3 4 5 1 2 3 4 5
1 2 3 4 5 1 2 3 4 5 1 2 3 4 5 1 2 3 4 5 1 2 3 4 5 1 2 3 4 5 1 2 3 4 5 1 2 3 4 5 1 2 3
4 5 1 2 3 4 5 1 2 3 4 5 1 2 3 4 5 1 2 3 4 5 1 2 3 4 5 1 2 3 4 5 1 2 3 4 5 1 2 3 4 5 1
2 3 4 5 1 2 3 4 5 1 2 3 4 5 1 2 3 4 5 1 2 3 4 5 1 2 3 4 5 1 2 3 4 5 1 2 3 4 5 1 2 3 4
5 1 2 3 4 5 1 2 3 4 5 1 2 3 4 5 1 2 3 4 5 1 2 3 4 5 1 2 3 4 5 1 2 3 4 5 1 2 3 4 5 1 2
3 4 5 1 2 3 4 5 1 2 3 4 5 1 2 3 4 5 1 2 3 4 5
...
...
...

  1. সি তে কলাম অনুসারে সংখ্যা মুদ্রণের প্রোগ্রাম

  2. C তে নন স্কোয়ার নম্বর প্রিন্ট করুন

  3. পাইথন ব্যবহার করে ফিবোনাচি সিকোয়েন্স কিভাবে প্রিন্ট করবেন?

  4. পাইথনে একটি তালিকা প্রিন্ট করুন