-
ucos_II of 33 classic examples, both through debugging and learning ucos_II shor...
ucos_II的33个经典例题,均调试通过的,学习ucos_II的捷径。强烈推荐!因代码太多只有一次上传6个,分成了5次上载。-ucos_II of 33 classic examples, both through debugging and learning ucos_II shortcut. Strongly recommended! Because too many code only once Upload six, divided into five available.
- 2022-05-22 23:53:08下载
- 积分: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
-
Can read/change the Nvidia graphics pll clock information, realize soft overcloc...
能读取/更改Nvidia显卡pll时钟信息,实现软超频的linux下源程序。-Can read/change the Nvidia graphics pll clock information, realize soft overclocking under linux source.
- 2022-01-25 16:27:00下载
- 积分:1
-
Novell Slist 源代码
Novell Slist 源代码-Novell Slist source code
- 2022-08-11 21:53:19下载
- 积分:1
-
一个有关操作系统的非常不错的资料,操作系统在我国应到受到比现在更多得多的关注
一个有关操作系统的非常不错的资料,操作系统在我国应到受到比现在更多得多的关注-one of the operating system is very good information, the operating system in China should be subject to much more than the concern
- 2022-06-20 10:25:55下载
- 积分:1
-
本程序是成绩管理程序,非常好而且方便使用,希望大家能够喜欢。...
本程序是成绩管理程序,非常好而且方便使用,希望大家能够喜欢。-results of this procedure is management procedures, but very good for ease of use, hope that we can like.
- 2023-07-08 07:30:03下载
- 积分:1
-
ucos
ucos-ii在 阳初2440开发板的移植
可支持从norflash启动,从nandflash启动以及由其它bootloader加载到SDRAM中运行-Yang ucos-ii in the beginning of 2440 development board can support from the transplant norflash start, start from the NANDFLASH as well as by other bootloader loaded into SDRAM running
- 2023-08-14 07:45:02下载
- 积分:1
-
处理器系统的进程调度编写程序完成单处理机系统中的进程调度,要求采用时间片轮转调度算法。实验具体包括:首先确定进程控制块的内容,进程控制块的组成方式;然后完成进程...
处理器系统的进程调度编写程序完成单处理机系统中的进程调度,要求采用时间片轮转调度算法。实验具体包括:首先确定进程控制块的内容,进程控制块的组成方式;然后完成进程创建原语和进程调度原语;最后编写主函数对所作工作进程测试。-processor systems process scheduling procedures for the preparation of single-processor system to complete the scheduling process, requiring time-Cycle Scheduling algorithm. Specific experiments include : first determine the process control block, process control block of composition; Then complete the process of creating original language and the process of scheduling the original language; Final preparation of the main function of the work done by the process of testing.
- 2023-03-02 07:10:03下载
- 积分:1
-
windows on the motherboard operating systems code
关于windows主板操作系统的运行代码-windows on the motherboard operating systems code
- 2022-10-01 15:30:03下载
- 积分:1
-
语音 超声波测距LCD12864显示
超声波测距仪,用51来控制,本设计主要是以74LS04和CX20106A为测距模块,DS18B20用于温度补偿,12864液晶显示,HC-SR04为超声波显示板,语音模块由音频功率放大器LM386、语音芯片WT588D、低压差电压调节LM1117组成。
- 2022-04-30 15:02:30下载
- 积分:1