Process (computing)\n\n\n In computing, a process is, roughly speaking, a task being run by a computer,\noften simultaneously with many other tasks.\nMany processes may exist simultaneously but they must take turns on the CPU\n(unless there are multiple CPU's available). Processes are often called tasks in embedded operating systems. The sense of 'process' is 'something that takes up time', as opposed to 'memory', which is 'something that takes up space'. Kaare Christian noted it was as if 'processes have "life"'. Processes are typically managed by the operating system, which\nkeeps them separated and allocates the resources they need so that\nthey are less likely to interfere with each other and cause system\nfailures.\nThe operating system may also provide mechanisms for\ninter-process communication to enable processes to interact\nin safe and predictable ways. In general, a process consists of:\n* Memory, (typically a region of virtual memory for suspended processes) which contains executable code or task-specific data.\n* Operating system resources that are allocated to the process, such as file descriptors (Unix terminology) or handles (Windows).\n* Security attributes, such as the process owner and the process's set of permissions.\n* Processor state, such as the content of registers, physical memory addresses, etc.. The state is stored in the actual registers when the process is executing, and in memory otherwise. The last item, the processor state, is associated with each of the process's threads in operating systems that support threads. At this level of programming, the registers are the lowest-level resource, and the program values must be loaded from memory into the registers, which are first re-set, and then loaded. These steps occur at the clock rate of the CPU and depend on the processor architecture. If a task is suspended, then it is eligible for swapping to disk, similarly to residence in virtual memory, where blocks of memory values are really on disk and not in physical memory. The block sizes depend on the operating system.See also\n* Computer multitasking\n* Child process\n* Orphan process\n* Zombie process Category:Computer terminology |
||
"There is more stupidity than hydrogen in the universe, and it has a longer shelf life." - Frank Zappa |
