-
用C语言编写程序,模拟二级目录的文件系统 建立一个模拟文件系统,能实现建立、打开、删除、关闭、复制、读、写、查询等功能...
用C语言编写程序,模拟二级目录的文件系统 建立一个模拟文件系统,能实现建立、打开、删除、关闭、复制、读、写、查询等功能-use C language write programmes,simulate two-level directory file systems,create a simulated file systems in order to realize the functions such as create,open,delete,close,copy,read,write,find.
- 2022-04-20 07:20:51下载
- 积分:1
-
在LPC2148上面能够正常运行的UCOS操作系统
在LPC2148上面能够正常运行的UCOS操作系统-In the LPC2148 above the normal operating system running uCOS
- 2022-04-17 21:14:51下载
- 积分:1
-
Process Scheduling Algorithm Implementation
进程调度算法的实现-Process Scheduling Algorithm Implementation
- 2023-03-15 07:15:03下载
- 积分:1
-
要开发一个C应用程序(.exe文件),大体上分为5个步骤(不考虑后期维护):
问题分析――分析要解决的问题,明确问题目标,将问题(尤其是复杂问题)分解为在数...
要开发一个C应用程序(.exe文件),大体上分为5个步骤(不考虑后期维护):
问题分析――分析要解决的问题,明确问题目标,将问题(尤其是复杂问题)分解为在数据、
-To develop a C application (. Exe file), generally divided into five steps (without regard to post-maintenance): Problem Analysis- Analysis of issues to be addressed explicitly the issue of targets, the problem (in particular, are complex issues) is decomposed into in the data,
- 2023-06-13 05:20:04下载
- 积分:1
-
some classics of the hash function and test data.
一些经典的HASH函数及测试数据-some classics of the hash function and test data.
- 2022-03-19 13:11:34下载
- 积分:1
-
ucos2_ English tutorial, very classic tutorial, especially for beginners, you wa...
ucos2_中文版教程,非常经典的教程,尤其是对初学者,希望对大家有帮助!-ucos2_ English tutorial, very classic tutorial, especially for beginners, you want to help!
- 2022-01-21 06:05:16下载
- 积分: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
-
分析了IDE接口硬盘控制寄存器模型;论述了IDE接口硬盘的读写几项技术;给出了设计硬盘克
隆软件的思想和方法,方法针对硬盘物理扇区进行读写,与硬盘上安装的具...
分析了IDE接口硬盘控制寄存器模型;论述了IDE接口硬盘的读写几项技术;给出了设计硬盘克
隆软件的思想和方法,方法针对硬盘物理扇区进行读写,与硬盘上安装的具体操作系统的类型无关,并与硬
盘驱动器的物理结构无关。-Analysis of the IDE hard disk interface control register model discusses the IDE interface hard disk read and write a number of technologies gives the design the hard disk cloning software, the ideas and methods, methods for the physical sector of the hard disk read and write, and the hard disk is installed on specific operations the type of system has nothing to do with the physical structure of the hard drive has nothing to do.
- 2022-05-12 23:10:21下载
- 积分:1
-
CPU调度算法的仿真项目实现FCFS,SJF,RR算法…
CPU scheduling algorithm simulation project implements FCFS , SJF , RR algorithms
- 2022-01-26 07:49:23下载
- 积分:1
-
操作系统磁盘分区的源程序
操作系统磁盘分区的源程序-operating system disk partition of the source
- 2022-08-22 00:14:32下载
- 积分:1