-
vc开发的关于操作系统的液面置换的模拟
vc开发的关于操作系统的液面置换的模拟-vc development of the operating system on the surface of the simulation replacement
- 2023-08-04 05:40:03下载
- 积分:1
-
操作系统里面一个功能的模拟,关于进程调度的
操作系统里面一个功能的模拟,关于进程调度的-Function of the operating system inside a simulation, on the process of scheduling
- 2023-05-17 21:30:02下载
- 积分:1
-
FIFO arithmetic,it can solve some common question.It have source code.
先进先出优先算法可以解决一些常见问题并为其源程序-FIFO arithmetic,it can solve some common question.It have source code.
- 2022-03-06 15:58:37下载
- 积分: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
-
system verilog fifo env
system verilog fifo env
- 2022-03-23 17:28:56下载
- 积分:1
-
控制光驱,可最小化的小程序
控制光驱,可最小化的小程序-control drive, the smallest of the small programs
- 2023-07-06 04:50:02下载
- 积分:1
-
使用VC在调用window Cmd 命令,并分析返回的结果来取得需要的数据。...
使用VC在调用window Cmd 命令,并分析返回的结果来取得需要的数据。-The use of VC in the call window Cmd commands, and analyze the returned results to obtain the required data.
- 2023-07-28 06:15:03下载
- 积分:1
-
通用异步FIFO的verilog设计代码,从开源
通用异步FIFO设计的verilog代码,来自于opencore-Universal Asynchronous FIFO Verilog design code, from opencore
- 2022-05-25 15:08:10下载
- 积分:1
-
uC/OS
uC/OS-II在X86下的全部源代码,可进行基于PC机的嵌入式uC/OS-II开发,还可以嵌入ucGUI和uCLAN。-uC/OS-II in the X86 under all source code, can be PC-based embedded uC/OS-II development, also can be embedded ucGUI and uCLAN.
- 2022-02-20 06:52:08下载
- 积分:1
-
achieve operating system threads
操作系统中实现线程-achieve operating system threads
- 2022-10-26 04:55:03下载
- 积分:1