This article is reprinted from the WeChat public account "Program Cat Adult", the author is Program Cat Adult. Please contact Program Cat Adult's public account to reprint this article. Many people will encounter deadlock problems during multi-threaded development. Deadlock problems are also frequently asked questions during interviews. Here we introduce how to use gdb+python scripts in C++ to debug deadlock problems, and how to detect deadlocks during program execution. First, let's introduce what deadlock is. Let's look at the definition in Wikipedia: Deadlock (English: Deadlock), also translated as deadlock, is a term in computer science. When two or more computing units are waiting for each other to stop running in order to obtain system resources, but neither of them exits early, it is called deadlock. In a multi-tasking operating system, the operating system must solve this problem in order to coordinate different processes and whether they can obtain system resources in order to make the system operate. Wikipedia introduces process deadlock. Deadlock can also occur in multi-threading. The same principle applies, so I will not introduce it in detail here. Four conditions for deadlock
Deadlock will only occur if the above four conditions are met at the same time. To eliminate deadlock, you only need to destroy any one of the conditions. How to debug multithreaded deadlock issues Most of the reasons for multi-threaded deadlocks are due to inconsistent locking orders in multiple threads. See the following code that will cause deadlock:
As shown in the figure:
The three threads refused to give in to each other, resulting in a deadlock. Traditional gdb debugging multi-threaded deadlock method (1) The attach id is associated with the process id where the deadlock occurs
(2)info threads View the information of all threads in the current process, and also view some stack information
Here you can see that threads 2, 3, and 4 are all in the lock_wait state. Basically, you can see whether there is a problem, but it is not certain. Here you need to use info threads multiple times to see if there are any changes in these threads. If there is no change for multiple times, then a deadlock has basically occurred. (3)Thread id enters the specific thread
(4) bt View the current thread stack information
The debugging is basically done here. For pthread_mutex_t, it can print which thread holds it. Then, by repeating steps 3 and 4, you can determine which threads and locks are deadlocked. For std::mutex, gdb cannot print specific mutex information, and you cannot see which thread holds the mutex. You can only enter the threads one by one to view the stack information. However, is there any good way to locate deadlock for std::mutex in c++11? have. This can be considered as the fifth step, continue: (5) Source loads the deadlock.py script
(6) Enter deadlock to detect deadlock
Looking directly at the results, the script detected the deadlock and pointed out which specific threads caused the deadlock. According to the output information, it can be clearly seen that the loop formed by the thread locks caused the deadlock. After finding out which specific threads formed the deadlock loop, you can check the stack information of the corresponding threads to see which locks are waiting. The principle of deadlock detection script: Let’s take the above picture as an example:
As shown in the figure, three threads form a loop. Deadlock detection is to check whether there is a loop between threads. It is relatively easy to check the deadlock loop alone. Here, the concept of simple loop is also involved, because the normally detected loop may be a large loop, not the loop with the least number of weight vertices. If the number of vertices in the detected loop is large, the cost of positioning will increase. The script is a simple loop for detection. It involves the strongly connected component algorithm and the simple loop algorithm. It is relatively complicated and I will not introduce it in detail. The script comes from Facebook's folly library (I recommend you to check Google's abseil and Facebook's folly, both of which are good things). The code is too long to be listed in the article. If you need it, you can download it yourself or follow me and add me as a friend to send it to you. How to detect deadlock in your code The principle is the same as described above. During the thread locking process, a graph is always maintained to record the relationship between threads. A->B, B->C, C->A |
<<: The management and configuration of routers and switches will definitely refresh your mind!!!
>>: Working together: Two ways Wi-Fi and 5G can coexist
LOCVPS (Global Cloud) released a promotional plan...
On May 25, China Telecom released its 2019 action...
[[386167]] This article is reprinted from the WeC...
For software-defined wide area networks (SD-WAN),...
The Internet of Things (IoT) is a technological r...
DediPath has launched a new promotion, offering a...
[51CTO.com original article] On the eve of the 20...
1. Calculate line bandwidth First, we need to det...
It’s the end of the year again. Regardless of whe...
[[426371]] Web pages will load resources, run JS,...
McKinsey's 2022 Technology Trends Outlook sho...
[51CTO.com original article] On October 28, after...
Introduction Usually HTTP messages include reques...
VULTR is a foreign VPS merchant founded in 2014. ...