-
基于组件方式开发操作系统的OSKIT源代码
基于组件方式开发操作系统的OSKIT源代码-component-based approach to the development of the operating system source code OSKIT
- 2022-06-13 00:10:53下载
- 积分:1
-
为改变端固件转储程序
program for changing endianness of firmware dumps
- 2022-08-08 17:33:04下载
- 积分:1
-
WINCE下,背光驱动源码.
WINCE下,背光驱动源码.
-WINCE, the backlight driver source code.
- 2022-05-25 17:09:24下载
- 积分:1
-
Solaris system optimization tools can do debugging test. Sun provided the origin...
Solaris系统优化工具,还可以做排错试验。SUN公司提供的原始文件和代码。-Solaris system optimization tools can do debugging test. Sun provided the original documentation and code.
- 2023-06-29 21:50:07下载
- 积分:1
-
小型多任务操作系统
应用背景
一个小型的多任务的操作系统的实现,用于学习,多任务调度与管理,使用标准c语言开发。
关键技术一个小型的多任务的操作系统的实现,用于学习,多任务调度与管理,使用标准c语言开发。一个真正微型操作系统,比uCOS更小,只支持16个任务,但速度更快,所占资源更少。a real micro-operating system, even smaller than for uCOS, which only supports 16 missions, but even faster. share with fewer resources.
- 2023-01-26 16:35:04下载
- 积分:1
-
探测设备,并与标准文件进行比较
Probe PCI devices, and compare information with standard file
- 2023-02-07 00:25: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
-
书 名: unix和shell程序设计权威教程
出 版 社: 清华大学出版社
作 者: [美]佛努丹,吉尔伯格著
本书介绍了unix操作系...
书 名: unix和shell程序设计权威教程
出 版 社: 清华大学出版社
作 者: [美]佛努丹,吉尔伯格著
本书介绍了unix操作系统和shell编程两个部分的知识。前一部分全面讲解了unix操作系统,包括unix操作系统、vi和ex编辑器、文件系统与文件操作权限、以及各种unix实用程序;后一部分深入介绍了各种类型的unix shell编程,涵盖了korn shell、c shell等主要的shell类型。本书采用可视化讲解方法,全书包含大量的图、表、代码清单、脚本和代码示例,可有效帮助读者理解所介绍的内容;各章章末还配备了相应的复习题、练习题和上机实习等资料,以帮助读者巩固所学的知识。 -Title : unix shell design and authoritative guide publishers : Tsinghua University Press Author : [U.S.] Naodan Dover, Jierbage book, the book on the unix operating system and shell programming two parts of the knowledge. First part of a comprehensive account of unix operating systems, including unix operating system, and ex vi editor. file system and file manipulation authority, and various unix utilities; latter part of the in-depth briefings on the various types of unix shell programming, covering the korn shell. c shell, and other major type of shell. The book on the visual method, the book contains a large number of graphs, charts, code lists, scripts and code examples, ca
- 2022-07-12 03:10:45下载
- 积分:1
-
操作系统读者写者问题源程序代码
操作系统读者写者问题源程序代码-readers to write the operating system source code problem
- 2022-01-26 07:39:45下载
- 积分:1
-
C++编写的内存管理源代码,适合定制自己内存池的程序员参考。...
C++编写的内存管理源代码,适合定制自己内存池的程序员参考。-C++ Prepared memory management source code, customize their own memory pool for the programmer
- 2022-01-24 17:28:43下载
- 积分:1