资源简介

书本上实例的源码。 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个文件信息

评论

共有 条评论