answersLogoWhite

0


Best Answer

there 45 bytes are needed to structure pcb

User Avatar

Wiki User

11y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: How many bytes are needed to structure process control block?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is process control block in operating system?

All of the information needed to keep track of a process when switching is kept in a data package called process control block.s A PCB is a data structure in the operating system kernel containing the information needed to manage a particular process. The PCB is the manifestation of a process in an operating system,


What is the Purpose of process control block diagram?

The purpose of process control block diagram is to make the process fast and accurate. It guides an engineer to achieve the target in time


Explain the purpose of process control block?

to explain the process currently


What is the function of process control block?

A process in an operating system is represented by a data structure known as a process control block (PCB) or process descriptor. The PCB contains important information about the specific process includingThe current state of the process i.e., whether it is ready, running, waiting, or whatever.Unique identification of the process in order to track "which is which" information.A pointer to parent process.Similarly, a pointer to child process (if it exists).The priority of process (a part of CPU scheduling information).Pointers to locate memory of processes.A register save area.The processor it is running on.The PCB is a certain store that allows the operating systems to locate key information about a process. Thus, the PCB is the data structure that defines a process to the operating systems.


Can any one suggest you how to do a project in c where one can control external devicesplz advice on how to proceed and the prerequisites?

If there are multiple devices, use a "control block" or some other static data struct to represent the current state of the external device. One control block per device. A control block can be little more than a structure containing information such as a device ID, device type, what the device is currently doing, what commands have been sent, a communication status and any other information that might be considered helpful. Typically, a control block like that will only be updated by one process (in a multiprocessing environment) but may be visible by many processes. Alternatively all information about the control block might only be updated and visible by the single process and information about a device would be sent using some kind of interprocess communication. In such an environment, one process would be responsible for maintaining the control block, one process would be responsible for reading/writing to the port, one process would be responsible for managing the work and one process would be responsible for the human interface.


List four things a process control block holds?

A Process Control Block is a data structure in the operating system kernel containing the information needed to manage a particular process. In general a PCB will include:PIDProcess state ( Ready, Stop, etc. )PriorityParent IDOwner or user ID.Register values for the process including the program counter and stack pointer values for the process.The address space for the process.Process accounting information, such as when the process was last run, how much CPU time it has accumulated, etc.Pointer to the next PCB i.e. pointer to the PCB of the next process to runI/O Information (i.e. I/O devices allocated to this process, list of opened files, etc)


What is a thread control block?

thread control block contain thread specific information such as -Stack pointer, PC, thread state (running, …), register values, a pointer to PCB, … The Thread Control Block acts as a library of information about the Thraeds in a system. Specific information is stored in the Thread control block highlighting important information about each process. By: ASIM JAVAID IQBAL


Msc bsc and bts structure block diagram?

Msc bsc and bts structure block diagram


What is process control simulator?

The simulation of physical processes represents a modern and efficient direction for multifunctional testing platforms. This paper will present a Process Control Simulator and its applications in system simulation. The Process Control Simulator can be used for students training as well as for the conception, simulation and improvement of control schemes in modern technologies. The simulation of industrial processes reduces the cost and the amount of time needed for deploying the system. The various types of applications, with different complexity factors, are associated with several functional masks. The Process Control Simulator uses a simulation block and a microcontroller for all the applications with different replaceable masks according to the desired application.


What is api classification used for?

A control structure is a block of programming that analyzes variables and chooses a direction in which to go based on given parameters. The term flow control details the direction the program takes (which way program control "flows")


What is boot control block?

Boot control block is typically the first block of the boot partition (boot block). It contains information to boot the OS from the disk.


What are the typical elements of a process image?

User data: Modifiable part of user space. May include program data, user stack area, and programs that may be modified.User program: The instructions to be executed.System Stack: Each process has one or more LIFO stacks associated with it. Used to store parameters and calling addresses for procedure and system calls.Process control Block (PCB): Info needed by the OS to control processes.