-
我自己写的一个实模式的操作系统,支持fat12文件系统和一个和shell整合到一起的简单的键盘驱动,目前正在实现pci总线驱动程序。以后将会转入到保护模式下开发...
我自己写的一个实模式的操作系统,支持fat12文件系统和一个和shell整合到一起的简单的键盘驱动,目前正在实现pci总线驱动程序。以后将会转入到保护模式下开发-I wrote it myself a real mode of the operating system, support FAT12 file system and a shell and the integration with a simple keyboard-driven, are currently achieving pci bus driver. After that it will enter a protected mode development
- 2022-07-10 19:09:18下载
- 积分:1
-
能够实现操作系统中页面置换算法(先进先出算法)
能够实现操作系统中页面置换算法(先进先出算法)-to achieve operating system page replacement algorithm (SJF)
- 2022-01-26 05:03:40下载
- 积分:1
-
自己写操作系统!杨文博著的一部很好的学习操作系统的书籍!...
自己写操作系统!杨文博著的一部很好的学习操作系统的书籍!-Write your own operating system! YANG Wen-bo" s a good learning experience for the operating system, the books!
- 2022-12-10 16:05:04下载
- 积分:1
-
ml-rsim
多处理器模拟器
支持类bsd操作系统-ml-rsim type of multi-processor support for bsd operating system simulator
- 2022-10-11 10:55:03下载
- 积分:1
-
UcOs Operation System V2.51 with source code.
the OS can used for PC/ARM/MCU,et...
*** *** *** *** *** *** ***
*** *** *** RELEASE NOTES *** *** *****
*** *** *** *** *** *** ***
1) RELEASE NOTES:
--- ----
The release notes are now provided in PDF format in the file:
SOFTWAREuCOS-IIDOCRelV251.PDF
2) FEATURES SINCE V2.00:
--- --- -----
All the features added since V2.00 are described in the PDF file:
SOFTWAREuCOS-IIDOCNewV251.PDF
3) EVENT FLAGS:
--------------
Event Flags are discussed in AN-1007 (see www.Micrium.com/app_notes.htm)
4) QUICK REFERENCE CHART:
------------------------
A Quick Reference Chart for all the functions in V2.51 is provided in the
following .PDF files:
SOFTWAREuCOS-IIDOCQuickRefChartV251-Color.PDF
Once printed, simply FOLD the page in half and if you have a LAMINATION
machine, you can protect the chart by laminating it.-UcOs Operation System V2.51 with source code.
the OS can used for PC/ARM/MCU,etc.For more detail,to view the package.
- 2022-04-23 12:23:47下载
- 积分:1
-
process simulation dining philosophers, 10 philosophers, 10 knives, forks, obser...
模拟哲学家就餐过程,10个哲学家,十副刀叉,观察线程的竞争情况-process simulation dining philosophers, 10 philosophers, 10 knives, forks, observation threads of competition
- 2023-01-09 20:45:03下载
- 积分:1
-
have been transplanted to the TI OMAP1610 processor Nucleus operating system sou...
已移植到TI OMAP1610处理器的Nucleus操作系统源码,并提供了一个Demo的应用程序。-have been transplanted to the TI OMAP1610 processor Nucleus operating system source code, and provide a Demo applications.
- 2022-11-04 10:50:03下载
- 积分: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
-
操作系统兔子吃草
#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
-
免费实时操作系统源代码
源代码的 FreeRTOS 中杰出人物系列皮质 M3 控制器。
如何在免费的实时操作系统,这是一个开放的平台中创建任务。如何多个任务运行在不同的优先事项。
皮质 M3 控制器的多任务执行。
- 2022-02-04 17:29:30下载
- 积分:1