登录 注册
当前位置:主页 > 资源下载 > 46 > 多线程操作系统实验

多线程操作系统实验

  • 更新:2024-10-21 08:42:49
  • 大小:4KB
  • 推荐:★★★★★
  • 来源:网友上传分享
  • 类别:OS - 操作系统
  • 格式:CPP

资源介绍

void createthread(threadlist &th_head) { th_head=new thread(); th_head->next=NULL; threadlist q=th_head; for(int i=0;i<1000;i++)//建立含1000个结构体的链表,第一个结构体的hand存放第一个线程,后面以此类推 { threadlist p=new thread(); // 创建一个结构体,并用p指向它 p->number=i; p->hand=CreateThread (NULL, 0, Fun1, NULL, 0, NULL); p->status="正在运行!"; q->next=p; q=p; q->next=NULL; } }