Commit 371636e9 authored by Yedidya Feldblum's avatar Yedidya Feldblum Committed by Facebook Github Bot

Style fixes for folly/experimental/gdb/README.md

Summary:
[Folly] Style fixes for `folly/experimental/gdb/README.md`.

Should have no effect on Github rendering, but should affect PHabricator rendering.

Reviewed By: Orvid, kennyyu

Differential Revision: D6055017

fbshipit-source-id: 54204a2b77beeb884cdc486207809f78ac80afe2
parent 80acc620
......@@ -8,7 +8,7 @@ These scripts use the [gdb extension Python API](https://sourceware.org/gdb/curr
To run the scripts, fire up `gdb` and load a script with `source -v`. Example:
```bash
```lang=bash
$ gdb -p 123456
(gdb) source -v ./folly/experimental/gdb/deadlock.py
Type "deadlock" to detect deadlocks.
......@@ -24,7 +24,7 @@ Found deadlock!
Consider the following program that always deadlocks:
```cpp
```lang=cpp
void deadlock3() {
std::mutex m1, m2, m3;
folly::Baton<> b1, b2, b3;
......@@ -59,7 +59,7 @@ void deadlock3() {
The `deadlock.py` script introduces a new `deadlock` command that can help
us identify the threads and mutexes involved with the deadlock.
```bash
```lang=bash
$ gdb -p 2174496
(gdb) source -v ./folly/experimental/gdb/deadlock.py
Type "deadlock" to detect deadlocks.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment