Skip to content

Latest commit

 

History

History
11 lines (10 loc) · 544 Bytes

File metadata and controls

11 lines (10 loc) · 544 Bytes

Programming Projects for Operating Systems Concepts Ninth Edition

===============================

Chapter 2: System Structures

Linux Kernel Modules

Traverse the linked list and output its contents to th kernel log buffer.

Chapter 3: Process Concept

Part I Iterating over Tasks Linearly

the kernel module that iterates through all tasks in the system using for_each_process() macro.

Part II: Iterating over Tasks with a Depth-First Search Tree

the kernel module that iterates over all tasks in the system using a DFS tree.