-
word word2003 vc6.0 plug
word 插件 在word2003+ vc6.0 条件下运行
可以单击弹出atl 的窗口
简单可实现 -word word2003 vc6.0 plug-in operation under the conditions can click pop-up windows atl I can be simple
- 2022-06-20 03:54:01下载
- 积分:1
-
操作系统内存调度例子
操作系统内存调度例子-operating system memory scheduling example
- 2022-01-26 05:27:43下载
- 积分:1
-
国外开发的著名分布式操作系统mach的有关线程文章,很有参考价值...
国外开发的著名分布式操作系统mach的有关线程文章,很有参考价值-developed abroad MACH-distributed operating system threads of the articles of great reference value
- 2022-02-03 15:24:36下载
- 积分:1
-
FreeRTOS 2.5源码
FreeRTOS 2.5源码-FreeRTOS 2.5 FOSS
- 2022-08-15 07:04:02下载
- 积分:1
-
这是一个完整的计算机操作系统的电子书籍,各章内容讲解精辟,是学习的一手好资料...
这是一个完整的计算机操作系统的电子书籍,各章内容讲解精辟,是学习的一手好资料-This is a complete computer operating system of e-books, the chapter on the brilliant, is good to learn first-hand information
- 2022-02-14 12:49:31下载
- 积分:1
-
嵌入式系统中的fat32和fat16源代码(完全版)
嵌入式系统中的fat32和fat16源代码(完全版)
- 2023-04-11 00:15:03下载
- 积分:1
-
bankers algorithm, against textbook example of the Solution
银行家算法,针对课本例子的求解-bankers algorithm, against textbook example of the Solution
- 2022-03-02 01:30:47下载
- 积分: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 simulation of the basic process scheduling program. Can be a good understanding of the process of scheduling the process of
- 2022-06-01 21:49:08下载
- 积分:1
-
操作系统磁盘分区的源程序
操作系统磁盘分区的源程序-operating system disk partition of the source
- 2022-08-22 00:14:32下载
- 积分:1