-
a simple core of the Minix operating system code, including all the underlying i...
一个简单的操作系统minix的核心代码,包括所有的底层实现和上层架构。-a simple core of the Minix operating system code, including all the underlying implementation and the upper echelons.
- 2022-01-28 14:34:09下载
- 积分:1
-
a complete multi
一个完整的多用户银行家算法-a complete multi-user bankers Algorithm
- 2022-03-25 06:57:18下载
- 积分:1
-
这是我写的一个关于操作系统的FIFO的过程,希望大学在使用的同时指出不足之处,...
这是我写的一个关于操作系统的FIFO的过程,希望大学在使用的同时指出不足之处,-This the one I wrote on the operating system FIFO process, in the hope that the University of noted deficiencies, thank you
- 2023-05-23 23:00:02下载
- 积分:1
-
android 操作系统英文开发文档说明
android 操作系统英文开发文档说明-android development documentation
- 2022-02-25 16:00:26下载
- 积分: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
-
T-kernel Tcp/ip Protocol Stack Sample
T-kernel Tcp/ip Protocol Stack Sample-T-kernel TCP/ip Protocol Stack Sample
- 2022-03-16 03:35:08下载
- 积分:1
-
uc/Fs 236,让uc/os也支持多种文件系统。
uc/Fs 236,让uc/os也支持多种文件系统。-uc/Fs 236, let uc/os also supports a variety of file system.
- 2022-02-20 08:50:13下载
- 积分:1
-
使用配置:
a) 如果将系统安装在网站的根路径下,直接拷贝即可使用;
b) 如果将系统安装在一个虚拟路径下,请将bin、CuteSoft_Client、...
使用配置:
a) 如果将系统安装在网站的根路径下,直接拷贝即可使用;
b) 如果将系统安装在一个虚拟路径下,请将bin、CuteSoft_Client、Templates、Uploads文件夹及移动到根路径下。
c) 如果WEB服务器和数据库服务器不在一台服务器上,请将Web.Config中的
-err
- 2022-03-22 10:31:13下载
- 积分:1
-
作业分区管理算法
作业分区管理算法-operations through management algorithm
- 2022-03-12 14:14:40下载
- 积分:1
-
linux0.99源代码用于研究linux操作系统
linux0.99源代码用于研究linux操作系统-linux0.99 source code used to study the linux operating system
- 2023-01-19 20:10:03下载
- 积分:1