-
教职工管理系统实现信息输入,信息显示,信息更改,信息添加,信息删除和信息查询功能 有方便,快捷的优点的一个实用程序....
教职工管理系统实现信息输入,信息显示,信息更改,信息添加,信息删除和信息查询功能 有方便,快捷的优点的一个实用程序.-Staff Management System importing information, information, information changes, the information added. delete information inquiries and information functions and efficient advantages of a utility.
- 2023-08-17 05:40:03下载
- 积分:1
-
Bochs this virtual machine
Bochs这个虚拟机的源代码。学习虚拟机的编写和操作系统的编写有帮助。-Bochs this virtual machine
- 2023-03-10 11:35:04下载
- 积分:1
-
希尔排序算法的实现C++sdvzvaGedgvfsewfcAWfqawfaswfasfc
希尔排序算法的实现C++sdvzvaGedgvfsewfcAWfqawfaswfasfc-Hill Sorting Algorithm of C sdvzvaGedgvfsewfcAWfqawfas wfasfc
- 2022-01-25 20:39:45下载
- 积分:1
-
基于UNIX6的文件系统模拟程序,供OS课程设计参考使用,在TC环境下测试成功...
基于UNIX6的文件系统模拟程序,供OS课程设计参考使用,在TC环境下测试成功-UNIX6 based on the file system simulation program for OS reference design courses, TC environment in the test successful
- 2023-03-06 07:00:03下载
- 积分:1
-
操作系统兔子吃草
#include "stdafx.h"
#include
#include
#include
/*信号量的定义,它是负责协调各个线程, 以保证它们能够正确、合理的使用公共资源。 用于控制进程间的同步与互斥*/
typedef HANDLE Semaphore;
Semaphore g_semBuffer,g_semGlass, g_mutex; //mutex 为互斥锁
// 利用 Windows 下的 API 函数(视窗操作系统应用程序接口)来定义 P、V 操作
#define P(S) WaitForSingleObject(S,INFINITE)
#define V(S) ReleaseSemaphore(S,1,NULL)
#define rate 1000
#define CONSUMER_NUM 4 // 消费者个数
#define PRODUCER_NUM 4 // 生产者个数
#define BUFFER_NUM 4 // 缓冲区个数
char *thing[4]={"glass1","glass2","glass3","glass4"};
//公共的队列缓冲区
struct Buffer
{
int product[BUFFER_NUM];
int front,rear;
}g_buf;
//兔子线程
DWORD WINAPI Rabbit(LPVOID para)
{
int i =*(int*)para; //第 i 只小白兔&
- 2022-05-23 06:18:02下载
- 积分:1
-
- 2022-02-05 04:27:35下载
- 积分:1
-
操作系验实验:模拟进程调度
操作系验实验:模拟进程调度-Operation of the Department of inspection experiment: Analog Process Scheduling
- 2022-01-23 11:08:46下载
- 积分:1
-
自己编写的一个程序,开发简单的员工工资信息管理系统,适用与初学JAVA者,实现对选工信息的查询,修改,添加和删除的功能。...
自己编写的一个程序,开发简单的员工工资信息管理系统,适用与初学JAVA者,实现对选工信息的查询,修改,添加和删除的功能。-I have written a program to develop a simple, wages and salaries of information management systems, application and JAVA beginner who realize information on the mode of election workers to access, modify, add and delete functions.
- 2022-01-23 11:20:12下载
- 积分:1
-
这是从不同语言来实现操作系统交通灯的调度问题
这是从不同语言来实现操作系统交通灯的调度问题-This is a different language from the operating system of traffic lights to achieve the scheduling problem
- 2022-04-26 17:07:40下载
- 积分:1
-
进程调度算法!是源代码,不错的了!给大家下载使用!
进程调度算法!是源代码,不错的了!给大家下载使用!-Process scheduling algorithm! Is the source code, good! U.S. to download!
- 2022-01-25 18:41:27下载
- 积分:1