Task Performance Prelim - Platform Technology
Task Performance Prelim - Platform Technology
1. Recall the details about the kernel components of a Windows operating system (OS). Based on
the figure below, select three (3) kernel components that you think are the most significant in
terms of process control.
- Object manager
Objects are managed by the Windows kernel-mode object manager component. In kernel
mode, all objects—including files, devices, synchronization methods, registry keys, etc.—are
represented as objects. Each object has a body and a header with details about it, like its
name, type, and location (containing data in format determined by each type of object).
- Power manager
This manages how efficiently different devices use power. It can be programmed to save
energy by turning off inactive hardware, the system, or by putting the processor to sleep.
- Security reference monitor
Security is a feature of operating systems that is becoming more and more crucial. The
operating system must verify that an activity does not conflict with system policy before it
can be performed. For instance, a gadget might or might not be open to all requests. You
could want to enable some requests to succeed or fail while building a driver, based on the
consent of the entity making the request.
2. Give one (1) sample process that can be executed by each kernel component you have selected.
Explain each sample process relative to its corresponding process control structure. Perform
additional research if necessary.
- Device and file system drivers
It serves as the software's interface to the hardware and is a Windows executive component
that operates in kernel mode. The hardware abstraction layer (HAL) aims to build different
hardware architecture from the operating system by providing the same interface to the
system.
Part 2