![]() |
Process Control and Multitasking
Concept: The UNIX kernel can keep track of many processes at once, dividing its time between the jobs submitted to it. Each process submitted to the kernel is given a unique process ID.
Single-tasking operating systems, like DOS, or the Macintosh System, can only perform one job at a time. A user of a single-tasking system can switch to different windows, running different applications, but only the application that is currently being used is active. Any other task that has been started is suspended until the user switches back to it. A suspended job receives no operating system resources, and stays just as it was when it was suspended. When a suspended job is reactivated, it begins right where it left off, as if nothing had happened. The UNIX operating system will simultaneously perform multiple tasks for a single user. Activating an application does not have to cause other applications to be suspended. Actually, it only appears that UNIX is performing the jobs simultaneously. In reality, it is running only one job at a time, but quickly switching between all of its ongoing tasks. The UNIX kernel will execute some instructions from job A, and then set job A aside, and execute instructions from job B. The concept of switching between queued jobs is called process scheduling. Viewing processes UNIX provides a utility called ps (process status) for viewing the status of all the unfinished jobs that have been submitted to the kernel. The ps command has a number of options to control which processes are displayed, and how the output is formatted. Example: Type the command Code:
psExample: Type the command Code:
ps -efExample: Use the ps command, and the grep command, in a pipeline to find all the processes owned by you. Explanation: The command Code:
ps -ef | grep yourusernameKilling processes Occasionally, you will find a need to terminate a process. The UNIX shell provides a utility called kill to terminate processes. You may only terminate processes that you own (i.e., processes that you started). The syntax for the kill command is kill [-options] process-ID. To kill a process, you must first find its process ID number using the ps command. Some processes refuse to die easily, and you can use the "-9" option to force termination of the job. Example: To force termination of a job whose process ID is 111, enter the command kill -9 111 |
Re: Process Control and Multitasking
Sir,
I am doing my Post Graduate diploma at CDAC.We have to do a project in C for implementing a "multitasking shell".We have to implement some of the internal and external commands. Can u kindly provide us some guidelines ? |
Re: Process Control and Multitasking
my project is "multi tasking shell".i've lots of problem during implementation of this project. please provide some idea about this project.how to implement it.
|
Re: Process Control and Multitasking
Hello every Linux expert, i have a idea but don't know whether it is useful or not.
My idea is like this each process is a function. Meanwhile, you alos need to write one function which handle interupt signal. When exist a interupt signal, do its job. After finished did the job, continue the previous process. It's extremely diffcult to code kernel using C because its need a deep understand in Links lists, structure, pointer and knowledge of hardware. I have no idea how to write it but you can refer to the kernel which published at kernel.org. Understand the code and try to code it yourself. If you have successfully code the multitasking kernel, please submit your code as a unique article. Thanks for your co-operation. Your co-operation is greatly appreciated by me and others. I hope you can do that. |
Re: Process Control and Multitasking
Thanks for your valuable information , keep it up mate
|
| All times are GMT +5.5. The time now is 10:36. |