-
一个完成的FIFO算法
一个完成的FIFO算法-completed a FIFO algorithm
- 2022-12-26 13:40:03下载
- 积分:1
-
操作系统中会遇到银行家的问题
操作系统中会遇到银行家的问题-operating system will encounter the problem of bankers
- 2022-10-18 20:35:03下载
- 积分:1
-
J2ME是Java 2平台的一个版本,使用在各种各样的消费电子产品和嵌入式设备上。Java Card技术规范得Java应用能运行在智能卡和更小的嵌入式设备上。本...
J2ME是Java 2平台的一个版本,使用在各种各样的消费电子产品和嵌入式设备上。Java Card技术规范得Java应用能运行在智能卡和更小的嵌入式设备上。本文介绍J2ME和Java Card的硬件平台和软件体系结构,以及如何进行J2ME和Java Card应用程序开发。Java在移动通信领域的应用已经引起广泛的关注,本文对此进行了详细的描述。-J2ME Java 2 Platform, a version of used in a wide range of consumer electronic products and embedded devices. Java Card specifications in Java applications can run on smart cards and small embedded devices. This paper introduces J2ME and Java Card hardware platforms and software architecture, and how J2ME and Java Card application development. Java in the area of mobile communications applications has attracted widespread attention, the paper carried a detailed description.
- 2023-05-02 01:45:04下载
- 积分:1
-
uC/OS
uC/OS-II在X86下的全部源代码,可进行基于PC机的嵌入式uC/OS-II开发,还可以嵌入ucGUI和uCLAN。-uC/OS-II in the X86 under all source code, can be PC-based embedded uC/OS-II development, also can be embedded ucGUI and uCLAN.
- 2022-02-20 06:52:08下载
- 积分: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
-
用C语言编写程序,模拟二级目录的文件系统 建立一个模拟文件系统,能实现建立、打开、删除、关闭、复制、读、写、查询等功能...
用C语言编写程序,模拟二级目录的文件系统 建立一个模拟文件系统,能实现建立、打开、删除、关闭、复制、读、写、查询等功能-use C language write programmes,simulate two-level directory file systems,create a simulated file systems in order to realize the functions such as create,open,delete,close,copy,read,write,find.
- 2022-04-20 07:20:51下载
- 积分:1
-
银行家算法C源代码参考,完整的源代码,可以直接编译
银行家算法C源代码参考,完整的源代码,可以直接编译-VC
- 2023-01-05 21:55:03下载
- 积分:1
-
标题:读和写注册表文件的例子
用visualbasic编的
标题:读和写注册表文件的例子
用visualbasic编的-Title : read and write registry document examples of the series with visualbasic
- 2022-09-30 16:15:02下载
- 积分:1
-
C++写的操作系统原理及实现,模拟页面置换算法OPT的源码
C++写的操作系统原理及实现,模拟页面置换算法OPT的源码-C++ Write the operating system and realize the principle of simulated OPT page replacement algorithm for the source
- 2022-01-24 08:50:42下载
- 积分:1
-
可以自学操作系统全部课程
可以自学操作系统全部课程- May study independently the operating system complete
curriculum
- 2022-09-26 15:05:03下载
- 积分:1