Maison > Article > développement back-end > En langage C, la fonction pthread_equal() est utilisée pour comparer si deux ID de thread sont égaux.
La fonction
pthread_equal() est utilisée pour vérifier si deux threads sont égaux. Il renvoie 0 ou une valeur non nulle. Il renvoie une valeur non nulle pour des threads égaux, 0 sinon. La syntaxe de cette fonction est la suivante :
int pthread_equal (pthread_t th1, pthread_t th2);
Voyons maintenant ce que fait réellement pthread_equal(). Dans le premier cas, nous vérifions le self-thread pour vérifier le résultat.
#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</p><p>"); } else { printf("Threads are not equal</p><p>"); } } 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
Maintenant, si nous comparons entre deux fils différents, nous verrons le résultat.
#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</p><p>"); } else { printf("Threads are not equal</p><p>"); } } 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
Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!