资源简介
书本上实例的源码。
The ninth edition of Operating System Concepts continues to evolve to provide a solid theoretical foundation for understanding operating systems. This edition has been updated with more extensive coverage of the most current topics and applications, improved conceptual coverage and additi
代码片段和文件信息
#include
#include
#include
/* This function is called when the module is loaded. */
int simple_init(void)
{
printk(KERN_INFO “Loading Module\n“);
return 0;
}
/* This function is called when the module is removed. */
void simple_exit(void) {
printk(KERN_INFO “Removing Module\n“);
}
/* Macros for registering module entry and exit points. */
module_init( simple_init );
module_exit( simple_exit );
MODULE_LICENSE(“GPL“);
MODULE_DEscriptION(“Simple Module“);
MODULE_AUTHOR(“SGG“);
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
....... 1101 2013-02-06 13:44 ch06\posix-sem.c
....... 6830 2013-02-06 13:44 ch09\addresses.txt
....... 65536 2013-02-06 13:44 ch09\BACKING_STORE.bin
....... 1297 2013-02-06 13:44 ch09\windows-programs\consumer.c
....... 1457 2013-02-06 13:44 ch09\windows-programs\producer.c
....... 705 2013-02-06 13:44 ch09\windows-programs\README
....... 4 2013-02-06 13:44 ch09\windows-programs\temp.txt
....... 47 2013-02-06 13:44 ch10\lockfile.txt
....... 1900 2013-02-06 13:44 ch10\LockingExample.java
....... 805 2013-02-06 13:44 ch10\README
....... 33 2013-02-06 13:44 ch11\file1.txt
....... 34 2013-02-06 13:44 ch11\file3.txt
....... 159 2013-02-06 13:44 ch02\Makefile
....... 574 2013-02-06 13:44 ch02\simple.c
....... 743 2013-02-06 13:44 ch03\DateClient.java
....... 849 2013-02-06 13:44 ch03\DateServer.java
....... 472 2013-02-06 13:44 ch03\fork-question-1.c
....... 404 2013-02-06 13:44 ch03\fork-question-2.c
....... 797 2013-02-06 13:44 ch03\newproc-posix.c
....... 1460 2013-02-06 13:44 ch03\newproc-win32.c
....... 1083 2013-02-06 13:44 ch03\shm-posix-consumer.c
....... 1391 2013-02-06 13:44 ch03\shm-posix-producer.c
....... 745 2013-02-06 13:44 ch03\simple-shell.c
....... 1283 2013-02-06 13:44 ch03\unix_pipe.c
....... 755 2013-02-06 13:44 ch03\win32-pipe-child.c
....... 2236 2013-02-06 13:44 ch03\win32-pipe-parent.c
....... 1236 2013-02-06 13:44 ch04\Driver.java
....... 579 2013-02-06 13:44 ch04\openmp.c
....... 1471 2013-02-06 13:44 ch04\thrd-posix.c
....... 1125 2013-02-06 13:44 ch04\thrd-win32.c
............此处省略14个文件信息
相关资源
- 嵌入式实时操作系统μC/OS-II与eCos的
- 嵌入式实时操作系统在DATU中的应用
- 嵌入式实时操作系统μC/OS-II下通用驱
- 嵌入式实时操作系统μC/OS-II在ARM上的
- 嵌入式操作系统的解析
- SAC型液压支架控制器检测平台的设计
- 基于MSP430单片机的实时多任务操作系
- 湖南大学操作系统实验报告
- 中标麒麟操作系统指南
- 操作系统最新视频教材链接(百度网
- 操作系统教程课后习题答案
- 操作系统教程 第5版 费翔林 骆斌 pp
- Linux操作系统下配置无密码的RSH访问
- 易语言仿真版源码易语言模拟版本源
- 嵌入式实时操作系统的RAM盘扩展
- 深入解析windows操作系统第六版 上册
- win7 和xp操作系统的打印机一键共享
- 深入解析Windows操作系统第6版 上下册
- 计算机408天勤2019数据结构计算机考研
- 计算机操作系统第4版超清
- 操作系统设计与实现 第三版 上下册
- 操作系统概念第九版原版辅助资源含
- 北航《操作系统》期末试题与答案
- 操作系统期末试卷与答案
- 自考操作系统上机含源代码
- 操作系统实验报告哲学家就餐问题、
- 操作系统课程设计代码
- linux内核设计的艺术 图解linux操作系统
- 大工软件学院操作系统第四次上机
- 操作系统课程设计 银行家算法论文
评论
共有 条评论