Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> การเขียนโปรแกรม C

pthread_equal() ใน C


ฟังก์ชัน pthread_equal() ใช้เพื่อตรวจสอบว่าสองเธรดเท่ากันหรือไม่ ส่งกลับค่า 0 หรือค่าที่ไม่ใช่ศูนย์ สำหรับเธรดที่เท่ากัน มันจะคืนค่าที่ไม่ใช่ศูนย์ มิฉะนั้น จะคืนค่า 0 ไวยากรณ์ของฟังก์ชันนี้มีลักษณะดังนี้ -

int pthread_equal (pthread_t th1, pthread_t th2);

ตอนนี้ให้เราดูการทำงานของ pthread_equal() ในกรณีแรกเราจะตรวจสอบการเธรดตัวเองเพื่อตรวจสอบผลลัพธ์

ตัวอย่าง

#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <sys/types.h>
#include <pthread.h>
pthread_t sample_thread;
void* my_thread_function(void* p) {
   if (pthread_equal(sample_thread, pthread_self())) { //pthread_self will return current thread id
      printf("Threads are equal\n");
   } else {
      printf("Threads are not equal\n");
   }
}
main() {
   pthread_t th1;
   sample_thread = th1; //assign the thread th1 to another thread object
   pthread_create(&th1, NULL, my_thread_function, NULL); //create a thread using my thread function
   pthread_join(th1, NULL); //wait for joining the thread with the main thread
}

ผลลัพธ์

Threads are equal

ตอนนี้เราจะเห็นผล หากเราเปรียบเทียบระหว่างสองเธรดที่ต่างกัน

ตัวอย่าง

#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <sys/types.h>
#include <pthread.h>
pthread_t sample_thread;
void* my_thread_function1(void* ptr) {
   sample_thread = pthread_self(); //assign the id of the thread 1
}
void* my_thread_function2(void* p) {
   if (pthread_equal(sample_thread, pthread_self())) { //pthread_self will return current thread id
      printf("Threads are equal\n");
   } else {
      printf("Threads are not equal\n");
   }
}

main() {
   pthread_t th1, th2;
   pthread_create(&th1, NULL, my_thread_function1, NULL); //create a thread using my_thread_function1
   pthread_create(&th1, NULL, my_thread_function2, NULL); //create a thread using my_thread_function2
   pthread_join(th1, NULL); //wait for joining the thread with the main thread
   pthread_join(th2, NULL);
}

ผลลัพธ์

Threads are not equal