-
要开发一个C应用程序(.exe文件),大体上分为5个步骤(不考虑后期维护):
问题分析――分析要解决的问题,明确问题目标,将问题(尤其是复杂问题)分解为在数...
要开发一个C应用程序(.exe文件),大体上分为5个步骤(不考虑后期维护):
问题分析――分析要解决的问题,明确问题目标,将问题(尤其是复杂问题)分解为在数据、
-To develop a C application (. Exe file), generally divided into five steps (without regard to post-maintenance): Problem Analysis- Analysis of issues to be addressed explicitly the issue of targets, the problem (in particular, are complex issues) is decomposed into in the data,
- 2023-06-13 05:20:04下载
- 积分:1
-
学习MFC的程序源代码
学习MFC的程序源代码-learning MFC source code
- 2022-07-14 06:51:07下载
- 积分:1
-
NUTTX操作系统源码
Nuttx 是一个实时嵌入式操作系统(Embedded RTOS),它很小巧,在微控制器环境中使用。Nuttx完全可扩展,可从从小型(8位)至中型嵌入式(32位)系统。它的设计目的还在于完全符合POSIX标准,完全实时,并完全开放。
- 2022-01-24 10:11:19下载
- 积分:1
-
监控文件目录的VC程序,不需要驱动的代码
监控文件目录的VC程序,不需要驱动的代码-monitoring directory of VC procedures, the code does not need Drivers
- 2023-08-17 10:00:03下载
- 积分:1
-
courses on operating system design
操作系统课程设计-courses on operating system design
- 2022-03-06 13:20:18下载
- 积分:1
-
demonstration of the code used to achieve critical thread synchronization.
本代码演示了利用临界区实现线程的同步。-demonstration of the code used to achieve critical thread synchronization.
- 2022-05-13 10:24:55下载
- 积分:1
-
串口的vc演示程序,和调试助手类似哦,比较超值啊
串口的vc演示程序,和调试助手类似哦,比较超值啊-Vc serial demo program, and debug similar aides Oh, ah Comparison Value
- 2022-02-16 08:11:35下载
- 积分:1
-
本文提供在微软的windows家族的操作系统的内核模式驱动程序中分配和使用内存的信息。它描述了驱动程序可用的内存类型,每种类型内存的适当的分配和使用,和测试与内...
本文提供在微软的windows家族的操作系统的内核模式驱动程序中分配和使用内存的信息。它描述了驱动程序可用的内存类型,每种类型内存的适当的分配和使用,和测试与内存有关的问题的最好方法-This article provides Microsoft windows family of operating system kernel mode driver in the distribution and use of memory information. It describes the drivers available memory types, each type of memory appropriate allocation and use, and testing of memory-related issues and the best way to
- 2022-03-03 17:14:04下载
- 积分: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
-
操作系统原理课件
操作系统原理课件----学习操作系统基础-Operating principle of the operating system-based learning courseware----
- 2022-05-16 17:56:36下载
- 积分:1