当前位置:网站首页>How to use information mechanism to realize process mutual exclusion, process synchronization and precursor relationship
How to use information mechanism to realize process mutual exclusion, process synchronization and precursor relationship
2022-07-06 08:00:00 【Computer Xiaobai passed by】
Before that, you can refer to this article 《 operating system 》- A preliminary understanding of semaphore mechanism Have a general understanding of the information base
Semaphore base realizes mutual exclusion of processes
There are several steps to realize the mutual exclusion of processes :
1、 Analyze the key activities of concurrent processes , Dividing critical zone ( Such as : Access to critical resource printers should be placed in the critical area )
2、 Set up Mutex semaphore
mutex, The initial value is 0
( Semaphore mutex Express “ Places to enter the critical zone ”)
3、 In the entry area P(mutex)—— Application resources
4、 In the exit area V(mutex)—— Release resources
Be careful :
Yes Different critical resources
need Set different amounts of mutually exclusive information
P、V Operations must appear in pairs
. The lack of P Operation will result in critical resources not being mutually exclusive , The lack of V The operation will cause the resource to be accessed and cannot be released , The waiting process will never be awakened
The information mechanism realizes process synchronization
Process synchronization : Let the concurrent processes advance orderly as required
For example, in the implementation process 1 Must be better than process 2 First access critical resources , This process is called process synchronization when it is pushed forward according to certain requirements , Let the asynchronous and concurrent processes cooperate with each other 、 To advance in an orderly way
Realizing process synchronization can be divided into the following steps :
1、 Analyze where process synchronization is needed , must One before and one after
Perform two operations ( Or two sentences of code )
2、 Set up Synchronous semaphore
S, The initial value is 0
3、 stay “ Front operation ” After performing V(S)
4、 stay “ Post operation ” Before execution P(S)
understand
Semaphore S Represents a resource , At first, there was no such resource .P2 To use this resource will be locked in P(S) Operate here , until P1 After execution V(S) take S The number of add 1 after P2 To be carried out .
If you execute to V(S) operation , be S++ after S=1. Then when the execution reaches P(S) In operation , because S=1, Indicates that there are available resources , Will execute S–,S The value of changes back to 0,P2 The process will not execute block The original language , Instead, continue to execute the code 4.
If you execute to P(S) operation , because S=0,S-- after S=-1, Indicates that no resources are available at this time , therefore P During the operation block The original language , Active request blocking . Then when the code is executed 2, Then execute V(S) operation , S++, send S Change back 0, Because there are processes in the blocking queue corresponding to the semaphore , So it will V In operation wakeup The original language , Wake up the P2 process . such P2 You can continue to execute Code 4 了
The information mechanism realizes the precursor relationship
What is the implementation of precursor relationships, for example
example : process P1 There is a code in S1,P2 There is a code in S2 ,P3 There is a code in S3 …… P6 There is a code in S6. These codes are required to be executed in the order shown in the following precursor diagram :
In fact, each pair of precursor relationships is a process synchronization relationship ( We need to ensure that one before another ), Therefore, the implementation of precursor relationship can be divided into the following steps :
1、 want Set a synchronization amount for each pair of precursor relationships
2、 stay “ Front operation ” Then execute the corresponding synchronization information V operation
3、 stay “ Post operation ” Previously, execute the corresponding synchronization information P operation
Content review :
边栏推荐
- A Closer Look at How Fine-tuning Changes BERT
- On why we should program for all
- Machine learning - decision tree
- [1. Delphi foundation] 1 Introduction to Delphi Programming
- 你想知道的ArrayList知识都在这
- Wireshark grabs packets to understand its word TCP segment
- [Yugong series] February 2022 U3D full stack class 011 unity section 1 mind map
- MEX有关的学习
- 远程存储访问授权
- PHP Coding Standard
猜你喜欢
Secure captcha (unsafe verification code) of DVWA range
Convolution, pooling, activation function, initialization, normalization, regularization, learning rate - Summary of deep learning foundation
Database basic commands
好用的TCP-UDP_debug工具下载和使用
Make learning pointer easier (3)
[untitled]
"Friendship and righteousness" of the center for national economy and information technology: China's friendship wine - the "unparalleled loyalty and righteousness" of the solidarity group released th
IP lab, the first weekly recheck
解决方案:智慧工地智能巡檢方案視頻監控系統
Generator Foundation
随机推荐
Helm install Minio
shu mei pai
1202 character lookup
edge瀏覽器 路徑獲得
Data governance: misunderstanding sorting
Get the path of edge browser
C语言 - 位段
Golang DNS write casually
Artcube information of "designer universe": Guangzhou implements the community designer system to achieve "great improvement" of urban quality | national economic and Information Center
Artcube information of "designer universe": Guangzhou implements the community designer system to achieve "great improvement" of urban quality | national economic and Information Center
Epoll and IO multiplexing of redis
解决方案:智慧工地智能巡檢方案視頻監控系統
使用 Dumpling 备份 TiDB 集群数据到兼容 S3 的存储
Nft智能合约发行,盲盒,公开发售技术实战--合约篇
Analysis of Top1 accuracy and top5 accuracy examples
[untitled]
Common functions for PHP to process strings
How to estimate the number of threads
esRally国内安装使用避坑指南-全网最新
P3047 [USACO12FEB]Nearby Cows G(树形dp)