Parts of the PCB

Similar Posts

  • Processes

    A process is an instance of a program being executed by an OS. The OS manages the processes in something called a Process Control Block (PCB). This helps it keep track of what is running, how much memory is being used and where, the program being run, the current instruction address, etc. Your operating system as a…

  • Role of the OS

    Book chapter notes: The operating system (OS) is the software that runs on the bare hardware of a computer and provides essential support for users to develop and use applications in the most efficient and safe manner. The OS will also serve as an abstraction layer for the user/applications to interact with hardware. The OS can serve…

  • Disk Block Allocation

    The file system sees a file as a series of blocks where the file physically exists on the disk. That disk block can only be accessed as a single unit using low-level read-block and write-block operations.  In a contiguous block allocation scheme, every file is mapped into a contiguous sequence of disk blocks. The FCB points to the…

  • Using an OS

    Before we dive into studying all about the OS, we want to do a quick dive into an OS, so we can see some of the topics we’ll be covering. In doing so, you might learn a little more about one of the most over looked applications that everyone has to use. Previously, we looked…

  • Memory Paging

    The main disadvantage of dividing memory into variable partitions is external fragmentation, which requires the searching of memory for holes large enough to satisfy each request. As we’ve mentioned previously, swapping or compaction is necessary when no hole large enough is available. A page is a fixed-size contiguous block of a logical address space identified by the…