-
文件系统,9600,fat16,fat32 ,还不错哦
文件系统,9600,fat16,fat32 ,还不错哦-File System, 9600, fat16, fat32, oh well
- 2022-01-25 16:14:31下载
- 积分:1
-
A small C/S mode network synchronization school systems, applications, Socket pr...
一款小型的C/S模式网络同步校时系统,应用Socket编程,实现服务器/可户端时间的同步校正。-A small C/S mode network synchronization school systems, applications, Socket programming, server/client can be time synchronized households correction.
- 2022-05-19 17:20:03下载
- 积分:1
-
线程的调度模拟ok
线程的调度模拟ok-thread scheduling simulation ok
- 2022-04-09 15:03:44下载
- 积分:1
-
操作系统小程序
操作系统小程序--银行家算法.该代码主要是针对计算机系高校学生在操作系统中有编程困难的同学而设计的,针对性教强.模拟实现银行家算法。通过编写和调试一个系统动态分配资源的简单模拟程序,观察死锁产生的条件,并采用银行家算法,有效的避免死锁.-Operating System applet- Banker" s algorithm. The code is mainly for the Department of Computer Science College Students in the operating system are designed for students with programming problems, and targeted to teach strong. Simulation and Realization of banker" s algorithm. By writing and debugging a simple system dynamic simulation program to allocate resources to observe the resulting deadlock conditions, and use of banker" s algorithm, effective to avoid deadlock.
- 2022-09-21 02:35: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
-
DOS operating system source code
DOS操作系统源代码-DOS operating system source code
- 2022-02-11 15:02:05下载
- 积分:1
-
里面包含汇编要用到了 dos里面的两个小程序
里面包含汇编要用到了 dos里面的两个小程序
- 2022-04-17 06:16:40下载
- 积分:1
-
这是一个实时的嵌入式操作系统的源代码,在s3c2410上运行过。可作为理解嵌入式实时操作系统的很好的资源。...
这是一个实时的嵌入式操作系统的源代码,在s3c2410上运行过。可作为理解嵌入式实时操作系统的很好的资源。-This is a real-time embedded operating system source code, run-off in the S3C2410. Understanding can be used as a good embedded real-time operating system resources.
- 2022-09-28 00:45:04下载
- 积分:1
-
IwTCP/IP network protocol stack in the operating system porting code ucos
IwTCP/IP网络协议栈在ucos操作系统上的移植代码-IwTCP/IP network protocol stack in the operating system porting code ucos
- 2022-02-02 22:21:48下载
- 积分:1
-
WINCE下,背光驱动源码.
WINCE下,背光驱动源码.
-WINCE, the backlight driver source code.
- 2022-05-25 17:09:24下载
- 积分:1