-
页面的存储管理,几种不同的调渡算法,能更深刻的学习存储管理,是可运行的程序...
页面的存储管理,几种不同的调渡算法,能更深刻的学习存储管理,是可运行的程序-pages of storage management, several different cross-algorithm, the more profound study storage management, operational procedures
- 2023-06-14 18:55:03下载
- 积分:1
-
关于ARM操作系统使用JTAG的原理图,谨供广大ARM爱好者参考
关于ARM操作系统使用JTAG的原理图,谨供广大ARM爱好者参考-Operating system on the use of ARM
- 2023-01-23 02:05:03下载
- 积分:1
-
是操作系统的置换算法,主要用于操作系统的阻塞与执行还有就绪...
是操作系统的置换算法,主要用于操作系统的阻塞与执行还有就绪-Operating system replacement algorithm is mainly used for blocking the implementation of the operating system still in place
- 2022-01-25 23:00:00下载
- 积分:1
-
对分析窗体结构有独到之处。可以以十六进制和十进制两种不同方式显示窗口句柄等所有数值...
对分析窗体结构有独到之处。可以以十六进制和十进制两种不同方式显示窗口句柄等所有数值-Analysis of the structure of the unique form. Can hexadecimal and decimal display in two different ways, such as window handle all the numerical
- 2022-04-30 17:15:54下载
- 积分: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
-
Orange s:一个操作系统的实现(书附源码)chapter6.rar
Orange s:一个操作系统的实现(书附源码)chapter6.rar-Orange" s: an operating system implementation (source code attached to the book) chapter5.rar
- 2022-01-31 18:40:29下载
- 积分:1
-
C++写的操作系统原理及实现,模拟页面置换算法FIFO的源码
C++写的操作系统原理及实现,模拟页面置换算法FIFO的源码-C++ Write the operating system and realize the principle of simulated FIFO page replacement algorithm for the source
- 2022-05-24 18:38:44下载
- 积分:1
-
Applied to arm, avr, h8 platform of non
应用于arm、avr、h8平台的非抢占式操作系统,简单好用,也可以很方便的移植到其他平台-Applied to arm, avr, h8 platform of non-preemptive operating system, easy-to-use, it can be easily ported to other platforms of
- 2022-03-01 10:46:08下载
- 积分:1
-
1, to obtain special permission
2, the implementation of/bin/sh
3, bound to th...
1、获取特殊权限
2、执行/bin/sh
3、绑定到端口。
4、反向连接。
5、躲避IDS的过滤
-1, to obtain special permission
2, the implementation of/bin/sh
3, bound to the port.
4, reverse connection.
5, to avoid filtering IDS
- 2023-04-01 20:30:03下载
- 积分:1
-
学习MFC的好东西,跟刚才的一起
学习MFC的好东西,跟刚才的一起-learning MFC good things, together with the earlier
- 2022-08-15 01:04:35下载
- 积分:1