CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 其它 操作系统开发 搜索资源 - code c

搜索资源列表

  1. C源代码的实时操作系统

    0下载:
  2. C源代码的实时操作系统-C source code for the real-time operating system
  3. 所属分类:操作系统开发

    • 发布日期:2008-10-13
    • 文件大小:9521
    • 提供者:贺德强
  1. bootf02

    0下载:
  2. John Fine的OS模型// 源代码// C & ASM// 英文 -John Fine s OS model//source code// C & ASM// english
  3. 所属分类:操作系统开发

    • 发布日期:2008-10-13
    • 文件大小:13446
    • 提供者:wjli
  1. DOS-C

    2下载:
  2. 用C语言实现的DOS操作系统的源代码,非常经典,研究操作系统的好资料-C language of the DOS operating system source code, very classic, a good operating system research information
  3. 所属分类:操作系统开发

    • 发布日期:2008-10-13
    • 文件大小:439160
    • 提供者:张清平
  1. C++reader

    0下载:
  2. 这是一个用C++实现读者和写者的问题的代码-This is the realization of a C readers and the writing of code
  3. 所属分类:操作系统开发

    • 发布日期:2008-10-13
    • 文件大小:2152
    • 提供者:xukekekeke
  1. C-os

    0下载:
  2. 用C语言设计一个有 N个进程并行的优先级调度程序的源代码-C language design is a process of parallel N-priority scheduling of a program's source code
  3. 所属分类:操作系统开发

    • 发布日期:2008-10-13
    • 文件大小:22013
    • 提供者:武键
  1. DOS 操作系统源代码

    0下载:
  2. DOS操用系统源代码,C语言编写,对操作系统的认识有很大的帮助.-DOS speaks system source code, C language, the awareness of the operating system will be very helpful.
  3. 所属分类:操作系统开发

    • 发布日期:2014-01-21
    • 文件大小:433134
    • 提供者:丁立平
  1. Ucore是一个很小的适于学习的操作系统

    0下载:
  2. Ucore是一个很小的适于学习的操作系统,此“麻雀”包含虚存管理、进程管理、处理器调度、同步互斥、进程间通信、文件系统等主要内核功能,总的内核代码量(C+asm)不会超过5K行。充分体现了“小而全”的指导思想。 这是ucore实验6:文件系统。通过完成本次实验,希望能达到以下目标:了解基本的文件系统系统调用的实现方法;了解一个基于索引节点组织方式的Simple FS文件系统的设计与实现;了解文件系统抽象层-VFS的设计与实现。文件中包括源代码和实验指导书。-Ucore is a small
  3. 所属分类:操作系统开发

    • 发布日期:2017-04-09
    • 文件大小:1038179
    • 提供者:gyh
  1. ucore-lab1

    0下载:
  2. Ucore是一个很小的适于学习的操作系统,此“麻雀”包含虚存管理、进程管理、处理器调度、同步互斥、进程间通信、文件系统等主要内核功能,总的内核代码量(C+asm)不会超过5K行。充分体现了“小而全”的指导思想。 这是ucore的实验1:系统软件启动过程。实验目的:操作系统是一个软件,也需要通过某种机制加载并运行它。在这里我们将通过另外一个更加简单的软件-bootloader 来完成这些工作。为此,我们需要完成一个能够切换到x86 的保护模式并显示字符的bootloader,为将来启动操作系统
  3. 所属分类:OS Develop

    • 发布日期:2017-04-09
    • 文件大小:1725387
    • 提供者:gyh
  1. ucore-lab

    0下载:
  2. Ucore是一个很小的适于学习的操作系统,此“麻雀”包含虚存管理、进程管理、处理器调度、同步互斥、进程间通信、文件系统等主要内核功能,总的内核代码量(C+asm)不会超过5K行。充分体现了“小而全”的指导思想。 这是全部的六个实验,有助于对操作系统的深入理解.-Ucore is a small operating system suitable for learning, " Sparrow" that contains the virtual memory managemen
  3. 所属分类:OS Develop

    • 发布日期:2017-05-27
    • 文件大小:10463950
    • 提供者:ZZR
  1. Nachos

    0下载:
  2. 高级操作系统实验nachos源码-Software and Microelectronics, Peking University Institute of Experimental nachos advanced operating system source code
  3. 所属分类:OS Develop

    • 发布日期:2017-06-19
    • 文件大小:30358509
    • 提供者:
  1. shell.c

    0下载:
  2. 主要用于linuxshell设计实验功能,包含了shell的一些代码-Linuxshell used to design the experimental features, including some of the shell code
  3. 所属分类:OS Develop

    • 发布日期:2017-03-24
    • 文件大小:5217
    • 提供者:古月
  1. ucore-lab5

    0下载:
  2. Ucore是一个很小的适于学习的操作系统,此“麻雀”包含虚存管理、进程管理、处理器调度、同步互斥、进程间通信、文件系统等主要内核功能,总的内核代码量(C+asm)不会超过5K行。充分体现了“小而全”的指导思想。 这是ucore的实验5:进程同步。实验目的:熟悉ucore中的进程同步机制,了解操作系统为进程同步提供的底层支持;在ucore中实现信号量(semaphore)机制;理解管程机制,在ucore中增加对条件变量(condition variable)的支持;了解经典进程同步问题,并使用
  3. 所属分类:OS Develop

    • 发布日期:2017-03-24
    • 文件大小:1002178
    • 提供者:gyh
  1. MS-DOS.6.0.Source.Code

    0下载:
  2. MS-DOS 6.0源码
  3. 所属分类:OS Develop

    • 发布日期:2017-11-09
    • 文件大小:21107359
    • 提供者:站长
  1. os_source

    0下载:
  2. 操作系统设计与实现源码-Design and Implementation of the operating system source code
  3. 所属分类:OS Develop

    • 发布日期:2017-11-15
    • 文件大小:54547807
    • 提供者:站长
  1. caozuoxitongshiyandaima

    0下载:
  2. 操作系统实验源代码 用C++写的 包括 进程调度,内存分配与回收 文件管理 -Experiment with the operating system source code C++ Writing, including process scheduling, memory allocation and recovery of document management
  3. 所属分类:OS Develop

    • 发布日期:2017-04-02
    • 文件大小:41701
    • 提供者:wtl
  1. sanos-src-latest

    0下载:
  2. 一个小型操作系统的源代码,其目的仅 仅是为了在x86电脑上在没有windows 操作系统的情况下能使用java虚拟机。 研究操作系统的好东西。-A small operating system source code, which is made solely to the x86 computer in the absence of windows operating system can use the case of java virtual machine. Research
  3. 所属分类:OS Develop

    • 发布日期:2017-04-09
    • 文件大小:1386164
    • 提供者:陈显永
  1. socket

    0下载:
  2. UNIX中实现基本远程socket通信的代码,主要是将客户端一个文件复制到服务器端-UNIX remote socket to achieve the basic communication code, the client is mainly a file copied to the server-side
  3. 所属分类:OS Develop

    • 发布日期:2017-03-28
    • 文件大小:4028
    • 提供者:林毅
  1. FreeOSEK_rel_0_3_0_20090511_beta

    1下载:
  2. 网上免费的单片机多任务操作系统OSEK/VDX源代码,包含了内核部分以及外设驱动程序,但驱动程序目前还不全。等待更新-Free online multi-tasking operating system microcontroller OSEK/VDX source code, contains the core components and peripheral drivers, but the driver is not yet full. Awaiting update
  3. 所属分类:OS Develop

    • 发布日期:2014-10-16
    • 文件大小:711884
    • 提供者:qiancunquan
  1. c

    0下载:
  2. C和C++嵌入式系统编程学习资料。 你可以从这本书里学到很多东 西。除了了解如何更有效地使用C和C++你还将会从本书中对常见的嵌人式软 件问题的详细解释,并从本书所提供的源代码中得到益处。本书中包含的高级 主题有存储器检测和验证、设备驱动程序的设计和实现.实时操作系统的内部 机理,还有代码优化技术。 -C and C++ Embedded Systems Programming learning materials. You can learn from this boo
  3. 所属分类:OS Develop

    • 发布日期:2017-05-03
    • 文件大小:1445933
    • 提供者:huan
  1. Chi-Lin-STM32-source-code

    0下载:
  2. 智林STM32程序源代码的分析和整理,编写了开发板上键盘扫描、字符输入和简单shell的程序-Chi Lin STM32 program source code analysis and sorting, preparation of the development board keyboard scanning, character input and a simple shell program
  3. 所属分类:OS Develop

    • 发布日期:2015-12-24
    • 文件大小:5120
    • 提供者:数据库
« 12 3 4 5 6 7 8 9 10 »
搜珍网 www.dssz.com