790 likes | 866 Views
Chapter 3. Processes. Contents. Process Concept Process Scheduling Operations on Processes Interprocesses Communication Examples of IPC Systems Communication in Client-Server Systems. Objectives.
E N D
Chapter 3 Processes
Contents • Process Concept • Process Scheduling • Operations on Processes • Interprocesses Communication • Examples of IPC Systems • Communication in Client-Server Systems SHANDONG UNIVERSITY
Objectives • To introduce the notion of a process---a program in execution, which forms the basis of all computation • To describe the various features of processes, including scheduling, creation and termination, and communication. • To describe communications in client-server systems SHANDONG UNIVERSITY
Process Concept • An operating system executes a variety of programs: • Batch system – jobs • Time-shared systems – user programs or tasks • Textbook uses the terms job and process almost interchangeably • Process – a program in execution; process execution must progress in sequential fashion • A process includes: • Text section • program counter • stack • data section SHANDONG UNIVERSITY
Process in Memory SHANDONG UNIVERSITY
Process State • As a process executes, it changes state • new: The process is being created • running: Instructions are being executed • waiting: The process is waiting for some event to occur • ready: The process is waiting to be assigned to a processor • terminated: The process has finished execution SHANDONG UNIVERSITY
Diagram of Process State SHANDONG UNIVERSITY
Diagram of Process State 挂起 活动 调度 释放 超时 挂起 事件 发生 事件 发生 等待 事件 活动 挂起 SHANDONG UNIVERSITY
Process Control Block (PCB) In order to manage processes, OS defines a data structure for each process to record the process’s characteristics, and describe the change. Information associated with each process • Process state • Process number • Program counter • CPU registers • CPU scheduling information • Memory-management information • Accounting information • I/O status information SHANDONG UNIVERSITY
Process Control Block (PCB) SHANDONG UNIVERSITY
CPU Switch From Process to Process SHANDONG UNIVERSITY
PCB of Linux The PCB in Linux is represented by the C structure task_struct. This structure contains information for representing a process, including the state of the process, scheduling, and memory management information, list of open files, and pointers to the process’s parent and any of its children. Struct task_struct{ • /* task state */ • Volatile long state; //定义 task 运行的状态, 以及信号 • struct linux_binfmt *binfmt; • int exit_code, exit_signal; • int pdeath_signal; /* The signal sent when the parent dies */ • /* 定义进程的用户号,用户组以及进程组*/ • unsigned long personality; • int dumpable:1; • int did_exec:1; • pid_t pid; //process identifier • Long state; //state of the process • pid_t pgrp; • pid_t tty_old_pgrp; • pid_t session; SHANDONG UNIVERSITY
PCB of Linux • /* boolean value for session group leader */ • 是否为进程组的头 • int leader; • /* • * pointers to (original) parent process, youngest child, younger sibling, • * older sibling, respectively. (p->father can be replaced with • * p->p_pptr->pid) • */ • 父子进程的一些指针 • struct task_struct *p_opptr, *p_pptr, *p_cptr, *p_ysptr, *p_osptr; • /* PID hash table linkage. */ • 在调度中用的一些hash 表 • struct task_struct *pidhash_next; • struct task_struct **pidhash_pprev; SHANDONG UNIVERSITY
PCB of Linux • /* Pointer to task[] array linkage. */ • struct task_struct **tarray_ptr; • struct wait_queue *wait_chldexit; /* for wait4() 等待队列 */ • struct semaphore *vfork_sem; /* for vfork() */ • unsigned long policy, rt_priority; • unsigned long it_real_value, it_prof_value, it_virt_value; • 进程的性质因为实时进程与普通进程的调度算法不一样所以应有变量区分 • 下面是进程的一些时间信息 • unsigned long it_real_incr, it_prof_incr, it_virt_incr; • struct timer_list real_timer; • struct tms times; • unsigned long start_time; • long per_cpu_utime[NR_CPUS], per_cpu_stime[NR_CPUS];//定义了时间片的大小 • /* mm fault and swap info: this can arguably be seen as either mm-specific or thread-specific */ • 内存信息 • unsigned long min_flt, maj_flt, nswap, cmin_flt, cmaj_flt, cnswap; • int swappable:1; SHANDONG UNIVERSITY
PCB of Linux • /* process credentials */ • uid_t uid,euid,suid,fsuid; • gid_t gid,egid,sgid,fsgid; • int ngroups; • gid_t groups[NGROUPS]; • kernel_cap_t cap_effective, cap_inheritable, cap_permitted; • struct user_struct *user; • /* limits */ • struct rlimit rlim[RLIM_NLIMITS]; • unsigned short used_math; • char comm[16]; • /* file system info */ • int link_count; • struct tty_struct *tty; /* NULL if no tty */ • /* ipc stuff */ SHANDONG UNIVERSITY
PCB of Linux • struct sem_undo *semundo; • struct sem_queue *semsleeping; • /* tss for this task */ • struct thread_struct tss; • /* filesystem information */ • struct fs_struct *fs; • /* open file information */ • struct files_struct *files; //list of open files • /* memory management info */ • struct mm_struct *mm; //address space of this process • /* signal handlers */ • spinlock_t sigmask_lock; /* Protects signal and blocked */ • struct signal_struct *sig; • sigset_t signal, blocked; • struct signal_queue *sigqueue, **sigqueue_tail; • unsigned long sas_ss_sp; • size_t sas_ss_size; • }; SHANDONG UNIVERSITY
Linux进程的状态 • TASK_RUNNING 可运行 • TASK_INTERRUPTIBLE 可中断的等待状态 • TASK_UNINTERRUPTIBLE 不可中断的等待状态 • TASK_ZOMBIE 僵死 • TASK_STOPPED 暂停 • TASK_TRACED • TASK_DEAD SHANDONG UNIVERSITY
标识符 SHANDONG UNIVERSITY
进程通信 • 进程通信有关信息 SHANDONG UNIVERSITY
进程链接信息 SHANDONG UNIVERSITY
与时间有关的域 SHANDONG UNIVERSITY
与文件系统相关的域和内存相关域 SHANDONG UNIVERSITY
页面管理信息 SHANDONG UNIVERSITY
Active processes in Linux SHANDONG UNIVERSITY
Process Scheduling Queues In multiprogramming or time sharing systems, process scheduler is needed to select a process for running • Job queue– set of all processes in the system • Ready queue– set of all processes residing in main memory, ready and waiting to execute • Device queues– set of processes waiting for an I/O device • Processes migrate among the various queues SHANDONG UNIVERSITY
Ready Queue And Various I/O Device Queues SHANDONG UNIVERSITY
Representation of Process Scheduling • Once the process is allocated the CPU, one of the following events could occur: • Issue an I/O request • Create a new subprocess • Wait for an interrupt SHANDONG UNIVERSITY
Schedulers • Long-term scheduler (or job scheduler) – selects which processes should be brought into the ready queue • Short-term scheduler (or CPU scheduler) – selects which process should be executed next and allocates CPU SHANDONG UNIVERSITY
Addition of Medium Term Scheduling • Swapping SHANDONG UNIVERSITY
Schedulers (Cont.) • Short-term scheduler is invoked very frequently (milliseconds) (must be fast) • Long-term scheduler is invoked very infrequently (seconds, minutes) (may be slow) • The long-term scheduler controls the degree of multiprogramming • Processes can be described as either: • I/O-bound process– spends more time doing I/O than computations, many short CPU bursts • CPU-bound process– spends more time doing computations; few very long CPU bursts Note: Long-term scheduler should make a careful selection between I/O bound process and CPU-bound process SHANDONG UNIVERSITY
Context Switch • When CPU switches to another process, the system must save the state of the old process and load the saved state for the new process • PCB • Context-switch time is overhead; the system does no useful work while switching—several milliseconds • Time dependent on hardware support • Memory speed • The number of registers • The existence of special instructions • Some special CPU—Sun UltraSPARC • Provide multiple sets of registers SHANDONG UNIVERSITY
Process Creation • Parent process create children processes, which, in turn create other processes, forming a tree of processes • Parent process • Child process SHANDONG UNIVERSITY
A tree of processes on a typical Solaris SHANDONG UNIVERSITY
a tree of processes in UNIX SHANDONG UNIVERSITY
Process Creation (Cont.) • Resource sharing • Parent and children share all resources • Children share subset of parent’s resources • Parent and child share no resources • Execution • Parent and children execute concurrently • Parent waits until children terminate SHANDONG UNIVERSITY
Process Creation (Cont.) • Address space • Child duplicate of parent • Child has a program loaded into it • UNIX examples • fork system call creates new process • exec system call used after a fork to replace the process’s memory space with a new program SHANDONG UNIVERSITY
C Program Forking Separate Process int main() { pid_t pid; /* fork another process */ pid = fork(); if (pid < 0) { /* error occurred */ fprintf(stderr, "Fork Failed"); exit(-1); } else if (pid == 0) { /* child process */ execlp("/bin/ls", "ls", NULL); } else { /* parent process */ /* parent will wait for the child to complete */ wait (NULL); printf ("Child Complete"); exit(0); } } SHANDONG UNIVERSITY
Process Creation SHANDONG UNIVERSITY
Another example #include <sys/types.h> #include<stdio.h> #include<unistd.h> int value = 5; int main() { pid_t pid; pid = fork(); if (pid == 0) value+=15; else if (pid>0) { wait(NULL); printf(“parent: value = %d”,value); exit(0); } } SHANDONG UNIVERSITY
Process creation in windows SHANDONG UNIVERSITY
Assignment #include "stdio.h"#include "unistd.h"#include "sys/ types.h"main(){ int pid; int i; char *flag[]={"child", "parent"}; pid=fork(); if(pid==0)i=0; else i=1; printf("%s:i=%d,&i=%d\n",flag[i],i,&i);}运行结果如下:child:i=0,&i=-1073751104parent:i=1,&i=-1073751104 SHANDONG UNIVERSITY
Process Termination • Process executes last statement and asks the operating system to delete it (exit) • Output data from child to parent (via wait) • Process’ resources are deallocated by operating system • Parent may terminate execution of children processes (abort) • Child has exceeded allocated resources • Task assigned to child is no longer required • If parent is exiting • Some operating system do not allow child to continue if its parent terminates • All children terminated - cascading termination SHANDONG UNIVERSITY
Cooperating Processes • Independent process cannot affect or be affected by the execution of another process • Cooperating process can affect or be affected by the execution of another process • Advantages of process cooperation • Information sharing • Computation speed-up • Modularity • Convenience SHANDONG UNIVERSITY
Communications Models SHANDONG UNIVERSITY
Producer-Consumer Problem • Paradigm for cooperating processes, producer process produces information that is consumed by a consumer process • unbounded-buffer places no practical limit on the size of the buffer • bounded-buffer assumes that there is a fixed buffer size SHANDONG UNIVERSITY
Producer-Consumer Problem 生产物品 放入B中 B中取物品 消费之 0 1 …… k-1 生产者 箱子,容量k B:Array[0..k-1]Of item 消费者 SHANDONG UNIVERSITY
Bounded-Buffer – Shared-Memory Solution • Shared data #define BUFFER_SIZE 10 typedef struct { . . . } item; item buffer[BUFFER_SIZE]; int in = 0; int out = 0; 缓冲区下一个空位 缓冲区第一个非空位 SHANDONG UNIVERSITY
Bounded-Buffer – Insert() Method while (true) { /* Produce an item */ while (((in + 1) % BUFFER SIZE) == out) ; /* do nothing -- no free buffers */ buffer[in] = item; in = (in + 1) % BUFFER SIZE; } SHANDONG UNIVERSITY
Bounded Buffer – Remove() Method while (true) { while (in == out) ; // do nothing -- nothing to consume // remove an item from the buffer item = buffer[out]; out = (out + 1) % BUFFER SIZE; return item; } *Solution is correct, but can only use BUFFER_SIZE-1 elements SHANDONG UNIVERSITY
Message-passing systems • It provides a mechanism to allow processes to communicate and to synchronize their actions without sharing the same address space • It is particularly useful in a distributed system. • Such as the chat program SHANDONG UNIVERSITY