-
实现磁盘的动态分区,三种算法 有注释
实现磁盘的动态分区,三种算法 有注释-To achieve dynamic disk partition, three kinds of algorithms comment
- 2023-05-11 22:40:02下载
- 积分:1
-
Visual C++数字图像识别技术典型案例
条形码生成器
Visual C++数字图像识别技术典型案例
条形码生成器-Visual C++ Digital image recognition technology a typical case of bar code generator
- 2022-02-13 08:34:42下载
- 积分:1
-
随着社会的快速发展,生活水平的不断提高,出于对智能化技术发展要求,为用户提供方便,操作简单,快捷,可靠的服务,开发了银行帐户管理系统....
随着社会的快速发展,生活水平的不断提高,出于对智能化技术发展要求,为用户提供方便,操作简单,快捷,可靠的服务,开发了银行帐户管理系统.-With the rapid development of society, the standard of living continues to improve, based on the requirements of the development of intelligent technology. to provide users with convenient, simple, fast, reliable service and the development of the bank account management system.
- 2023-06-19 06:25:06下载
- 积分:1
-
此文档提供了一些IBM大型机操作系统AIX的命令,对于AIX入门来说是有一定帮助的。...
此文档提供了一些IBM大型机操作系统AIX的命令,对于AIX入门来说是有一定帮助的。-This document provides a number of IBM mainframe operating system command AIX for AIX is a certain entry help.
- 2022-06-30 04:46:40下载
- 积分: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
-
生产者和消费者
生产者和消费者实验代码,主要是为了应付操作系统实验而选择的代码。希望可以帮助到大家顺利完成实验吧,不挂科。代码有相应的注释,大家应该看得懂。代码的环境是VC6.0就可以编译,很方便。好了,大家有兴趣就下载来用用吧。
- 2022-12-01 10:45:03下载
- 积分:1
-
the linux source code is very comprehensive ~ ~ basic integrity of the use of a...
这个linux源代码是很全面的~基本完整了~使用c编译的~由于时间问题我没有亲自测试~但就算用来做参考资料也是非常好的-the linux source code is very comprehensive ~ ~ basic integrity of the use of a translation of c ~ due to the time I did not personally test to be used to do it even if reference is very good
- 2022-03-17 08:23:38下载
- 积分:1
-
C++编写的内存管理源代码,适合定制自己内存池的程序员参考。...
C++编写的内存管理源代码,适合定制自己内存池的程序员参考。-C++ Prepared memory management source code, customize their own memory pool for the programmer
- 2022-01-24 17:28:43下载
- 积分:1
-
我自己写的一个实模式的操作系统,支持fat12文件系统和一个和shell整合到一起的简单的键盘驱动,目前正在实现pci总线驱动程序。以后将会转入到保护模式下开发...
我自己写的一个实模式的操作系统,支持fat12文件系统和一个和shell整合到一起的简单的键盘驱动,目前正在实现pci总线驱动程序。以后将会转入到保护模式下开发-I wrote it myself a real mode of the operating system, support FAT12 file system and a shell and the integration with a simple keyboard-driven, are currently achieving pci bus driver. After that it will enter a protected mode development
- 2022-07-10 19:09:18下载
- 积分:1
-
GPS源代码,欢迎大家交流 三代GPS芯片
GPS源代码,欢迎大家交流 三代GPS芯片-GPS Firmware
- 2022-01-31 23:35:45下载
- 积分:1