登录 注册
当前位置:主页 > 资源下载 > 9 > 用C语言模拟操作系统中的进程管理

用C语言模拟操作系统中的进程管理

  • 更新:2024-09-28 22:48:26
  • 大小:5KB
  • 推荐:★★★★★
  • 来源:网友上传分享
  • 类别:网络攻防 - 安全技术
  • 格式:CPP

资源介绍

简单模拟 void CreateProgress() /*创建进程*/ { int pname; pnode *apcd; if(count <= n) { printf("input a progress name(int)\n"); scanf("%d",&pname); apcd = (struct node*)malloc(sizeof(pnode)); apcd->name = pname; //apcd->status = already; if(phead == NULL) { phead = apcd; rp = phead; phead->next=NULL; } else { rp->next = apcd; rp = apcd; rp->next = NULL; } count ++; printf("successed to create a progress!\n"); AutoSheduling(); } else { printf("progresses are more than "); printf("%d",n); printf("\n"); printf("System overload!\n"); } }