-
COS 0.0.1.rar Cos操作系统源代码
COS 0.0.1.rar Cos操作系统源代码-0.0.1.rar Cos COS operating system source code
- 2023-08-22 13:25:04下载
- 积分:1
-
2410 Embedded Development System linux core source code
2410 嵌入式开发系统 linux核心源代码-2410 Embedded Development System linux core source code
- 2022-06-15 13:03:11下载
- 积分:1
-
Orange s:一个操作系统的实现(书附源码)chapter6.rar
Orange s:一个操作系统的实现(书附源码)chapter6.rar-Orange" s: an operating system implementation (source code attached to the book) chapter5.rar
- 2022-01-31 18:40:29下载
- 积分:1
-
这个是一个完整的药房管理系统,喜欢VC的朋友门参考
这个是一个完整的药房管理系统,喜欢VC的朋友门参考-This is a complete pharmacy management system, like the VC friend of doors Reference
- 2023-08-27 06:10:07下载
- 积分:1
-
Nucleus Plus PowerPC移植代码 PPC850
Nucleus Plus PowerPC移植代码 PPC850-Nucleus Plus PPC850
- 2022-07-17 03:42:23下载
- 积分:1
-
现在有很多的相机类型,和一些鱼
现在有很多相机类型,有的鱼眼相机照完的图片会发生畸变,为此,我们要进行鱼眼图片校正。本程序正是针对鱼眼图象的校正程序,里面有详细的注释说明相信只要是有一定的基础的人都能看懂。不过,还有差值部分没做完哪,有待完善。-Now have a lot of camera types, and some fish-eye camera images will be finished according to distortion, to that end, we have to carry out fish-eye image correction. This procedure is for fish-eye image correction program, which has detailed notes as long as it is believed that the basis of a certain person can understand. However, there is some difference which did not finish, remain to be improved.
- 2022-01-25 15:46:44下载
- 积分: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
-
a micro
一个微型操作系统源码-a micro-source operating system
- 2022-07-07 23:14:16下载
- 积分:1
-
CPU调度C语言实现 实现1FCFS(先到先服务) 2SJF(最段作业优先调度) 3RR(轮转法) 4PSA(优先权调度)n) 5EXIT 6...
CPU调度C语言实现 实现1FCFS(先到先服务) 2SJF(最段作业优先调度) 3RR(轮转法) 4PSA(优先权调度)n) 5EXIT 6时间的延迟; 7:屏幕的换色.-CPU scheduling C Language Implementation 1FCFS (first come-first services) 2SJF (most of the operational priority scheduling) 3RR (Web) 4PSA (Priority Scheduling) n) 5EXIT six hours of delay; 7 : screen for color.
- 2022-02-26 06:57:36下载
- 积分:1
-
See the keyboard make code, break, code source code
查看键盘make code,break,code 的源代码-See the keyboard make code, break, code source code
- 2023-02-17 14:45:03下载
- 积分:1