-
正确判断操作系统版本
正确判断操作系统版本,用于判断OS各系统平台版本号
- 2022-03-03 15:50:32下载
- 积分:1
-
测试系统环境变量的程序
测试系统环境变量的程序-test system environment variables procedures
- 2022-07-11 03:25:55下载
- 积分:1
-
一个非常全面的开发包。包括实模式中断,内存和磁盘处理
一个非常全面的开发包。包括实模式中断,内存和磁盘处理-A very comprehensive development package. Including the real-mode interrupts, memory and disk processing
- 2023-05-27 03:20:03下载
- 积分:1
-
IwTCP/IP network protocol stack in the operating system porting code ucos
IwTCP/IP网络协议栈在ucos操作系统上的移植代码-IwTCP/IP network protocol stack in the operating system porting code ucos
- 2022-02-02 22:21:48下载
- 积分:1
-
以上代码 VB6 SP6 + Windows XP SP2 下通过 另外,更改默认打印机的方法。...
以上代码 VB6 SP6 + Windows XP SP2 下通过 另外,更改默认打印机的方法。-The above code VB6 SP6+ Windows XP SP2 through the addition, the method to change the default printer.
- 2022-01-26 02:28:29下载
- 积分:1
-
2004.7.6日上传的一个有错这是2004.7.7日重新传的。这是本人用汇编和C混合编成的一个32...
2004.7.6日上传的一个有错这是2004.7.7日重新传的。这是本人用汇编和C混合编成的一个32-bit多任务、多线程的操作系统内核。现在暂时不提供原代码但可以下载用。谁有兴趣且觉得自己有能力和我共同完善它最终实现真正的中国本土的高端操作系统请和我联系:yaocong@mail.china.com -2004.7.6 date passes on has mistake this is 2004.7.7 dates
repasses on. This is myself uses the assembly and C mix forming 32-bit
multi- duties, the multi-thread operating system essence. Now
temporarily does not provide the original code but to be allowed to
download uses. Who has the interest also thought oneself has the
ability and I consummates it finally to realize the genuine Chinese
native place high end operating system together please to relate with
me: Yaocong@mail.china.com
- 2023-05-02 10:10:03下载
- 积分:1
-
MAC OS X操作系统开发者手册!
MAC OS X操作系统开发者手册! -MAC OS X operating system developers manual!
- 2022-02-12 10:36:26下载
- 积分:1
-
操作系统试验!通过这个试验,你可以更加详细的了解的一些操作系统方面的知识!...
操作系统试验!通过这个试验,你可以更加详细的了解的一些操作系统方面的知识!-Test operating system! Through this test, you can a more detailed understanding of some of the operating system of knowledge!
- 2022-03-24 18:24:08下载
- 积分:1
-
基于组件方式开发操作系统的OSKIT源代码
基于组件方式开发操作系统的OSKIT源代码-component-based approach to the development of the operating system source code OSKIT
- 2022-06-13 00:10:53下载
- 积分: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