-
AVR 128 Processor dev source
AVR 128 Processor dev source -128 AVR dev source Processor
- 2023-02-28 05:00:04下载
- 积分:1
-
freedos32 the source code and dos compatible operating system. Now only 0. Versi...
freedos32的源代码,和dos兼容的操作系统。现在仅是0。05版本-freedos32 the source code and dos compatible operating system. Now only 0. Version 05
- 2023-02-17 17:45:03下载
- 积分:1
-
RT-Linux源码 一个实时操作系统源码,很小巧-RT-1-source Linux operating system source code, the very small
- 2022-07-16 04:02:48下载
- 积分:1
-
系统还原点清理工具 By Mouri_Naruto
应用背景个人编写的一个小工具;专门用于清理系统还原点关键技术用到了卷影复制(VSS)和系统还原客户端(SrClient)的API
- 2022-02-28 13:50:42下载
- 积分:1
-
asp.net+ access menu without refresh using a simple three
asp.net + access 无刷新三级联动菜单使用简单 方便 容易学习-asp.net+ access menu without refresh using a simple three-linkage will find it easier to learn
- 2022-01-31 18:20:56下载
- 积分:1
-
一个微型操作系统源码。抛砖引玉,希望有更多的国人开发和共享操作系统源码。...
一个微型操作系统源码。抛砖引玉,希望有更多的国人开发和共享操作系统源码。-a micro-source operating system. Comment hope more people development and sharing of the operating system source code.
- 2022-02-16 02:59:04下载
- 积分:1
-
ttermpro:一个非常不错的TELNET 仿真软件。
ttermpro:一个非常不错的TELNET 仿真软件。-ttermpro : a very good TELNET simulation software.
- 2022-10-18 03:00:08下载
- 积分:1
-
ucos的源代码程序,可以好好研究一下,尤其是进程控制用的一张二维表,简直是经典...
ucos的源代码程序,可以好好研究一下,尤其是进程控制用的一张二维表,简直是经典-uCOS program source code, you can look good, especially the process of controlling a two-dimensional form, it is a classic
- 2022-01-26 01:30:56下载
- 积分: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
-
操作系统课程设计,模拟文件系统(unix混合索引方式),此程序是在1周的课程设计中所写,不完善,且代码粗糙。但,希望能给大家一些帮助,也希望能对你们的课程设计有...
操作系统课程设计,模拟文件系统(unix混合索引方式),此程序是在1周的课程设计中所写,不完善,且代码粗糙。但,希望能给大家一些帮助,也希望能对你们的课程设计有所帮助,更希望能有人修改它。谢谢!-courses on operating system design, simulation File System (unix Index Mixed mode), this procedure is the one-week course design is written, imperfect and code rough. However, the hope of giving you some help, and hope they can right your curriculum design help, the hope was modifying it. Thank you!
- 2022-07-07 01:21:11下载
- 积分:1