ホームページ > バックエンド開発 > C++ > C言語におけるpthread_cancel()関数の意味は、スレッドをキャンセルすることです。

C言語におけるpthread_cancel()関数の意味は、スレッドをキャンセルすることです。

WBOY
リリース: 2023-09-15 10:13:06
転載
1156 人が閲覧しました

C言語におけるpthread_cancel()関数の意味は、スレッドをキャンセルすることです。

thread_cancel() は、スレッド ID によって特定のスレッドをキャンセルするために使用されます。この関数は、終了のためにスレッドに 1 つのキャンセル要求を送信します。pthread_cancel() の構文は次のとおりです。 −

int pthread_cancel(pthread_t th);
ログイン後にコピー

次に、この関数を使用してスレッドをキャンセルする方法を見てみましょう。

#include <stdio.h>
#include <unistd.h>
#include <sys/types.h>
#include <pthread.h>
int count = 0;
pthread_t sample_thread;
void* thread_one_func(void* p) {
   while (1) {
      printf("This is thread 1</p><p>");
      sleep(1); // wait for 1 seconds
      count++;
      if (count == 5) {
         //if the counter is 5, then request to cancel thread two and exit from current thread
         pthread_cancel(sample_thread);
         pthread_exit(NULL);
      }
   }
}
void* thread_two_func(void* p) {
   sample_thread = pthread_self(); //store the id of thread 2
   while (1) {
      printf("This is thread 2</p><p>");
      sleep(2); // wit for 2 seconds
   }
}
main() {
   pthread_t t1, t2;
   //create two threads
   pthread_create(&t1, NULL, thread_one_func, NULL);
   pthread_create(&t2, NULL, thread_two_func, NULL);
   //wait for completing threads
   pthread_join(t1, NULL);
   pthread_join(t2, NULL);
}
ログイン後にコピー

出力

This is thread 2
This is thread 1
This is thread 1
This is thread 2
This is thread 1
This is thread 1
This is thread 1
This is thread 2
This is thread 2
This is thread 2
This is thread 2
This is thread 2
This is thread 2
This is thread 2
This is thread 2
This is thread 2
This is thread 2
This is thread 2
This is thread 2
ログイン後にコピー

以上がC言語におけるpthread_cancel()関数の意味は、スレッドをキャンセルすることです。の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。

ソース:tutorialspoint.com
このウェブサイトの声明
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。
最新の問題
人気のチュートリアル
詳細>
最新のダウンロード
詳細>
ウェブエフェクト
公式サイト
サイト素材
フロントエンドテンプレート