登录
首页 » C# » 基于dos的多任务系统的实现 通过对线程的创建和撤销,cpu的调度,同步机制,通信机制的实现....

基于dos的多任务系统的实现 通过对线程的创建和撤销,cpu的调度,同步机制,通信机制的实现....

于 2023-03-06 发布 文件大小:2.58 kB
0 24
下载积分: 2 下载次数: 1

代码说明:

基于dos的多任务系统的实现 通过对线程的创建和撤销,cpu的调度,同步机制,通信机制的实现.-based multi-tasking system of the threads through the creation and withdrawn, cpu scheduling, synchronization mechanisms, communication mechanisms to achieve.

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • C#社区人员信息管理系统源码(无需数据库,基于本地xml数据源)
    在.NET平台下,模拟设计一个社区人员基本信息管理的窗体程序,该系统设计功能要求:  1) 该窗体需要统计的社区成员信息有:住址、编号、姓名、工作,联系方式、年龄等。  2) 通过窗体和控件设计,实现人员基本信息的新增、删除、修改等功能。3) 思考并进一步设计: 通过对成员基本信息数据对象串行化的方式,把成员基本数据信息保存在文件中,也能够从文件中读出显示在窗体控件中,并能提供关键字的有效查询。
    2019-12-17下载
    积分:1
  • Kalman
    GPS_SINS integrated navigation Calman filtering algorithm, loose coupling, VC++ programming, MFC interface.(Calman filter algorithm for GPS_SINS integrated navigation)
    2020-11-24 20:39:34下载
    积分:1
  • winform开发框架
    winform开发框架,大家可以下载下来研究一下;
    2022-03-28 13:11:21下载
    积分:1
  • C#扣字
    C#扣字,输入法简单版本 C#扣字,输入法简单版本 C#扣字,输入法简单版本 C#扣字,输入法简单版本 C#扣字,输入法简单版本 C#扣字,输入法简单版本 C#扣字,输入法简单版本 C#扣字,输入法简单版本 C#扣字,输入法简单版本 C#扣字,输入法简单版本 C#扣字,输入法简单版本 C#扣字,输入法简单版本 C#扣字,输入法简单版本 
    2022-10-16 12:40:02下载
    积分:1
  • 200742149
    :极值分布在计量经济学、金融工程、计算生物学、工程测量中都有用途,一般常用最小二乘法估计 其参数,但最小二乘法的误差较高.极大似然估计具有比最4 -乘法更好的性质,但由于它的计算往往比较麻 烦.通过极大似然法估计了极值分布的参数,同时给出了求参数的数值解的算法,并通过Matlab程序实现了 这一算法. (: Extreme value distribution in econometrics, financial engineering, computational biology, engineering measurement purposes are generally used to estimate the parameters of least squares, but a higher least squares error. Maximum likelihood estimation than the 4'-multiplication better nature, but because it is often too much trouble to the calculation. Through the maximum likelihood method estimates the parameters of the extreme value distribution, while the parameters are given for the numerical solution of the algorithm, Matlab program by the algorithm.)
    2009-05-17 10:46:17下载
    积分:1
  • EzReportBuild 2.0报表组件源码和demo及说明
    2.0版本添加了多报表页功能,每份报表可设置多页,每页可设置不同的纸张大小、数据表、页面规则等,并可对报表页次序即时调整,同时,优化了显示,报表显示更流畅。EzReportBuild 2.0报表组件,可以完成报表设计、预览、打印等功能,提供接口函数,可以将设计、预览等嵌入到自定的winform中调用,使用简单,调用灵活。在你的工程项目里,新建一个窗体,添加按钮,使用:// 单独打开报表编辑器        private void button1_Click(object sender, EventArgs e)        {            _Interface.independent_DesignForm();    }打开设计器设计报表,保存报表后可去掉按钮,该工程项目生成的报表,别的应用不能打开查看。如需复杂数据报表,可先生成一个临时数据库表,然后引入报表系统,由于报表数据为按行读取,所以只要能够设计出数据库各字段和内容,就能够生成相应的报表。打印规则为“内容区域”栏目无论所在位置,紧跟页头栏,所以适当调整“页头区域”、“页脚区域”位置,保证按需求输出。制作每页多行数据报表,“内容区域”为自动计算填充“页头区域”、“页脚区域”之间的空间,应适当调整“内容区域”栏目和页头页脚之间的空间,达到最佳打印效果。如需在表格内添加空行,可在生成的报表数据库表中添加空记录即可。 注意:使用时,将fontawesome-webfont.ttf字体文件与exe文件放置在一起,使用Access数据库时,注意路径,如没有安装AccessDatabaseEngine.exe,可在微软网站下载,或在本压缩文件的soft文件夹中安装。 更新关注:https://www.cnblogs.com/qiaoke/p/10365440.html 设计器截图      预览截图 嵌入程序截图 多种纸张同时预览using System;using System.Drawing;using System.Windows.Forms;namespace Demo_1{ public partial class Form1 : Form { RBuild_Interface _Interface = new RBuild_Interface(); // 新建接口 RBuild_Preview rpb = new RBuild_Preview(); // 预览窗口对象 public Form1() { InitializeComponent(); } // 单独打开报表编辑器 private void button1_Click(object sender, EventArgs e) { _Interface.independent_DesignForm(); } // 单独打开报表预览 private void button2_Click(object sender, EventArgs e) { _Interface.independent_PreviewForm(@"测试报表1.rpt", 2, "", "", "", "地址库.mdb"); } private void button3_Click(object sender, EventArgs e) { // 按钮可以使用 b1.Enabled = true; b2.Enabled = true; b3.Enabled = true; b4.Enabled = true; b5.Enabled = true; b6.Enabled = true; b7.Enabled = true; b8.Enabled = true; _Interface.embedded_PreviewForm(rpb, panel1, @"测试报表1.rpt", 2, "", "", "", "地址库.mdb", true); } private void b1_Click(object sender, EventArgs e) { _Interface.preview_FirstPage(rpb); } private void b2_Click(object sender, EventArgs e) { _Interface.preview_PreviousPage(rpb); } private void b3_Click(object sender, EventArgs e) { _Interface.preview_NextPage(rpb); } private void b4_Click(object sender, EventArgs e) { _Interface.preview_LastPage(rpb); } private void b5_Click(object sender, EventArgs e) { _Interface.preview_Search(new Point(200,200)); } private void b6_Click(object sender, EventArgs e) { _Interface.zoom_Menu(rpb,new Point(300,200)); } private void b7_Click(object sender, EventArgs e) { _Interface.print_Page(rpb); } private void b8_Click(object sender, EventArgs e) { int _now, _tol; _now = _Interface.get_NowPage(rpb); _tol = _Interface.get_TotalPage(); MessageBox.Show("当前页:" _now "--- 总页数:" _tol); } }}
    2019-01-19下载
    积分:1
  • PersonalAVIButton
    这是做界面的一个最方便的例程,应用CButtonST的基本原理,可以实现动画按钮的基本效果,按钮的封装和显示有专门的类来实现,框架为基本的对话框程序,采用VS.net2005来编写,简单,易学,是个人编写的成果,而非下载。(This is one of the most convenient interface to do the routine application of the basic principles of CButtonST, can achieve the basic effect of the animation button, buttons, packaging and display a special class to implement the framework for the basic dialog program, the use of VS.net2005 to write, easy to learn, is the outcome of personal writing, rather than download.)
    2010-10-25 18:44:15下载
    积分:1
  • 与单片机通信程序
    说明:  关于GY-271三轴电子指南针加速度的资料(Information on acceleration of GY-271 three-axis electronic compass)
    2020-06-21 23:20:01下载
    积分:1
  • Flood Fill
    基于种子蔓延的洪水淹没算法,基于C#语言编写而成,以数组为例,递归思想(The flood inundation algorithm based on seed spreading is based on C# language, and takes the array as an example)
    2021-02-23 15:49:40下载
    积分:1
  • TabView_TabCtr
    TabView 具有TabCtrl类似功能的视图类(Tabview class have the function like TabCtrl .)
    2013-11-30 10:34:05下载
    积分:1
  • 696522资源总数
  • 104040会员总数
  • 35今日下载