-
rc500的代码, rc500的代码
rc500的代码, rc500的代码-rc500 code rc500 code, the code rc5
- 2022-10-15 17:30:02下载
- 积分:1
-
带模块显示进程管理,对于学习操作系统编程的开发人员有帮助...
带模块显示进程管理,对于学习操作系统编程的开发人员有帮助-Band module show that the process of management, programming operating system for the study will help developers
- 2022-08-10 16:07:09下载
- 积分:1
-
Linux命令大全,修改后的版本,对于一些命令为内核的2.6小时。
Linux的命令大全,修改版本,对一些针对内核2.6的命令做了注释,还是挺不错的。适合初学者或者作为手册进行查询-Linux command Daquan, a modified version, for some commands for the kernel 2.6 has done a comment, or very good. Suitable for beginners or as a manual query
- 2023-02-18 23:45:03下载
- 积分:1
-
这是一个我经过研究学习,理解了别人得程序,感觉很不错的源程序....
这是一个我经过研究学习,理解了别人得程序,感觉很不错的源程序.-This is a research study I read, understand others in the process, I feel very good source.
- 2023-02-11 21:45:03下载
- 积分:1
-
RAM中文资料,面向A R M 微处理器构架的嵌
入式操作系统的使用量将在今后五
年持续增长,在各种嵌入式操作系
统中,Linux是获得支持最多的第...
RAM中文资料,面向A R M 微处理器构架的嵌
入式操作系统的使用量将在今后五
年持续增长,在各种嵌入式操作系
统中,Linux是获得支持最多的第三
大力量。-RAM Chinese data, M A R-oriented architecture microprocessor embedded operating system used in the next five years will be continued growth Embedded in the various operating systems, Linux is supported by most third-largest force.
- 2022-07-04 23:43:16下载
- 积分: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
-
settlement process Deadlock bankers algorithm, vc 2005
解决进程死锁的银行家算法,vc++2005-settlement process Deadlock bankers algorithm, vc 2005
- 2022-04-13 06:28:15下载
- 积分:1
-
哈夫曼编码的实现,用C++编写的。操作系统课设时做的,可以正确的运行...
哈夫曼编码的实现,用C++编写的。操作系统课设时做的,可以正确的运行-Huffman encoding implementation, using C++ prepared. When the operating system to do for the class, you can run the right
- 2023-05-13 08:10:02下载
- 积分:1
-
Linux 0.11 版本的中文件注释版本,把里面的E文按作者的理解,改成了中文,并且加入了作者自己的理解心得,对于学习Linux内核很有帮助....
Linux 0.11 版本的中文件注释版本,把里面的E文按作者的理解,改成了中文,并且加入了作者自己的理解心得,对于学习Linux内核很有帮助.-0.11 version of the Linux File Notes version of the E inside the text by the author"s understanding, the Chinese changed, and acceded to the author"s understanding of ideas and learning Linux kernel helpful.
- 2023-03-11 08:50:03下载
- 积分:1
-
测试还未成功,主要是在winNT和2000下远程隐藏进程
测试还未成功,主要是在winNT和2000下远程隐藏进程-Test has not been successful, mainly in the WinNT and 2000 long-range hidden under the process of
- 2022-05-08 03:23:10下载
- 积分:1