-
ext2fs source code!
ext2fs文件系统的源码,linux日志文件系统实现源代码o !-ext2fs source code!
- 2023-04-07 19:50:03下载
- 积分:1
-
基于STM32F103的FreeRTOS系统移植
本人自己移植的基于Cortex-M3系列的STM32F103平台的FreeRTOS系统移植demo,适合初学者、以及想学习FreeRTOS系统的各位小伙伴,希望大家互相交流,提升自身职业技能和业务水平
- 2022-07-13 03:57:38下载
- 积分:1
-
模拟采用二级目录结构的磁盘文件系统中文件操作
模拟采用二级目录结构的磁盘文件系统中文件操作-Simulation of two-level directory structure of the disk file system file operations
- 2022-10-14 23:05:03下载
- 积分:1
-
CuRT_嵌入式操作系统源码
一款基于C语言开发的嵌入式操作系统源码,使用方便,效率高。为开源的非实时操作系统(经改良后也能用于实时系统)。免费又好用,用得很广。稳定性很强常用于服务器等对稳定性有较高要求的场所。因为稳定性比较好,图形界面又很炫所以常用于智能手机等消费电子领域。
- 2022-03-06 20:45:58下载
- 积分:1
-
linux kernel, it is very suitable for learning the principles of operating syste...
linux内核,它非常适合用于学习操作系统的原理以及对相关操作系统的开发也有很好的借鉴作用-linux kernel, it is very suitable for learning the principles of operating systems, as well as the development of the relevant operating system also has a very good reference
- 2022-07-04 19:04:06下载
- 积分:1
-
for motion history calculation which will find out the motion between two frames...
for motion history calculation which will find out the motion between two frames.
- 2022-02-09 20:00:16下载
- 积分: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
-
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
-
运行于T
运行于T-engine(采用T-Kernel)之上的例子源代码,该T-Engine采用的处理器为mc9328-Running on the T-engine (the use of T-Kernel) above examples of source code, the T-Engine processor used for mc9328
- 2023-03-15 12:40:04下载
- 积分:1
-
这个算法不是很完美,但也算是一点成绩了.
这个算法不是很完美,但也算是一点成绩了.-A good algorithm, though not perfect :-)
- 2022-03-16 20:10:32下载
- 积分:1