91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

[Linux線程]使用線程的屬性

發布時間:2020-06-13 14:47:17 來源:網絡 閱讀:578 作者:銀河星君 欄目:編程語言
#include <stdio.h>
#include <stdlib.h>
#include <pthread.h>
#define TRUE 1     //定義兩個常量
#define FALSE 0 
int thread_flag = TRUE;   //標志位
//線程處理函數
void *threaddeal(void *arg) 
{
  printf("當前線程正在執行.\n");
  sleep(3);                                //休眠3秒
  printf("線程即將退出.\n");
  thread_flag = FALSE;                     //修改線程標志位
  pthread_exit(NULL);                      //線程退出
}
//主程序
int main(int argc,char *argv[])
{
  pthread_t threadid;                    //定義線程描述符
  pthread_attr_t thread_attr;            //定義線程屬性對像
  pthread_attr_init(&thread_attr);       //線程屬性初始化
  pthread_attr_setdetachstate(&thread_attr, PTHREAD_CREATE_DETACHED);    //將線程設置為分離狀態
  if(pthread_create(&threadid, &thread_attr, threaddeal, NULL))    //創建新線程,并修改屬性
  {
    printf("創建線程失敗\n");
    exit(0);
  }
  while(thread_flag)    //判斷標志位
  {
    printf("等待線程結束\n");
    sleep(1);
  }
  printf("線程結束.\n");
  return 0;
}


向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

公安县| 舒城县| 双流县| 阿荣旗| 桐城市| 海门市| 泽库县| 夏邑县| 垣曲县| 郴州市| 晋州市| 宜都市| 曲麻莱县| 合江县| 博野县| 中方县| 安康市| 黑龙江省| 保靖县| 普定县| 得荣县| 宜君县| 错那县| 英吉沙县| 灵武市| 临漳县| 盐山县| 囊谦县| 文山县| 栖霞市| 丹东市| 固安县| 伊宁市| 阿拉善左旗| 屏东市| 汨罗市| 安吉县| 万山特区| 穆棱市| 广饶县| 汽车|