-
《操作系统》实验指南
《操作系统》实验指南-"operating systems" experiment guide
- 2022-07-20 03:25:02下载
- 积分:1
-
OMAP730 进入DEEPSLEEP模式代码.
OMAP730 进入DEEPSLEEP模式代码.
-OMAP730 enter the code DEEPSLEEP mode.
- 2022-01-26 03:00:47下载
- 积分:1
-
BCB与Open CV
带打开cv的BCB
- 2022-09-16 22:30:08下载
- 积分:1
-
小型多任务操作系统
应用背景
一个小型的多任务的操作系统的实现,用于学习,多任务调度与管理,使用标准c语言开发。
关键技术一个小型的多任务的操作系统的实现,用于学习,多任务调度与管理,使用标准c语言开发。一个真正微型操作系统,比uCOS更小,只支持16个任务,但速度更快,所占资源更少。a real micro-operating system, even smaller than for uCOS, which only supports 16 missions, but even faster. share with fewer resources.
- 2023-01-26 16:35:04下载
- 积分:1
-
TCPIP Stack in ucos embedded operating systems design and implementation
嵌入式TCPIP协议栈在ucos操作系统上的设计与实现-TCPIP Stack in ucos embedded operating systems design and implementation
- 2022-03-20 09:27:36下载
- 积分:1
-
Many want to use their own and the sequence to control their own computer, here...
很多的都想用自已的和序控制自己的电脑,这里有一些常用函数,希望对大家有用-Many want to use their own and the sequence to control their own computer, here are some commonly used functions, in the hope that useful to everybody
- 2022-09-12 02:30:03下载
- 积分:1
-
S3C2410上非操作系统的usbHost程序,可以不用操作系统读写U盘等...
S3C2410上非操作系统的usbHost程序,可以不用操作系统读写U盘等-S3C2410 on non-operating system usbHost procedures, you can not read and write operating systems, such as U Disk
- 2022-01-27 16:27:09下载
- 积分: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
-
Running on T
运行于T-Engine(使用T-Kernel操作系统)的实例源码,该T-Engine采用处理器为sh7727-Running on T-Engine (the use of T-Kernel operating system) source code examples, the T-Engine used for the SH7727 processor
- 2022-12-17 12:25:02下载
- 积分:1
-
一个操作系统源代码
一个操作系统源代码-an operating system source code
- 2022-06-03 15:11:00下载
- 积分:1