1 Star 1 Fork 0

仓葵与暮/os-project-2

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
main.cpp 1.20 KB
一键复制 编辑 原始数据 按行查看 历史
仓葵与暮 提交于 2021-09-17 19:54 . 初始化
/* ****************************************************************************
* Central South University, CSU
* @Author csu_cangkui
* Version 1.2.4
* 2020/12/07
* ****************************************************************************
* Project main modules:
* widget Main frame of project OSSimulation
* sprocess Process class of project OSSimulation
* spcb PCB module in a process
* readyque The ready queue of OS in memory
* readyinfodialog Frame for showing information of a process in ready queue
* backupque The back-up queue of OS outside memory
* addworks Frame for adding a process to back-up queue by users
* selectsuspend Frame for selecting a process into suspend queue
* passrate Module for showing percents of usage of memory
* ****************************************************************************
*/
#include "widget.h"
#include <QApplication>
#include <QDebug>
#include <QTimer>
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
Widget w;
w.setWindowTitle("OSsimulation");
w.setWindowIcon(QIcon(":/image/Image/os.png"));
w.show();
w.CPUscheduling();
return a.exec();
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/fortherepublic-cpp/os-project-2.git
git@gitee.com:fortherepublic-cpp/os-project-2.git
fortherepublic-cpp
os-project-2
os-project-2
master

搜索帮助