Skip to content

Commit b35b16b

Browse files
committed
Fix markdown
1 parent fed4d8b commit b35b16b

File tree

1 file changed

+10
-4
lines changed

1 file changed

+10
-4
lines changed

lldb/docs/resources/lldbgdbremote.md

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2471,7 +2471,7 @@ The packet below are supported by the
24712471
[V8](https://v8.dev) Wasm runtimes.
24722472
24732473
2474-
## qWasmCallStack
2474+
### qWasmCallStack
24752475
24762476
Get the Wasm call stack for the given thread id. This returns a hex-encoded
24772477
list of PC values, one for each frame of the call stack. To match the Wasm
@@ -2486,41 +2486,47 @@ read packet: $9c01000000000040e501000000000040fe01000000000040#
24862486
**Priority to Implement:** Only required for Wasm support. Necessary to show
24872487
stack traces.
24882488
2489-
## qWasmGlobal
2489+
### qWasmGlobal
24902490
24912491
Get the value of a Wasm global variable for the given frame index at the given
24922492
variable index. The indexes are encoded as base 10. The result is a hex-encoded
24932493
address from where to read the value.
24942494
2495+
```
24952496
send packet: $qWasmGlobal:0;2#cb
24962497
read packet: $e0030100#b9
2498+
```
24972499
24982500
**Priority to Implement:** Only required for Wasm support. Necessary to show
24992501
variables.
25002502
25012503
2502-
## qWasmLocal
2504+
### qWasmLocal
25032505
25042506
Get the value of a Wasm function argument or local variable for the given frame
25052507
index at the given variable index. The indexes are encoded as base 10. The
25062508
result is a hex-encoded address from where to read the value.
25072509
25082510
2511+
```
25092512
send packet: $qWasmLocal:0;2#cb
25102513
read packet: $e0030100#b9
2514+
```
25112515
25122516
**Priority to Implement:** Only required for Wasm support. Necessary to show
25132517
variables.
25142518
25152519
2516-
## qWasmStackValue
2520+
### qWasmStackValue
25172521
25182522
Get the value of a Wasm local variable from the Wasm operand stack, for the
25192523
given frame index at the given variable index. The indexes are encoded as base
25202524
10. The result is a hex-encoded address from where to read value.
25212525
2526+
```
25222527
send packet: $qWasmStackValue:0;2#cb
25232528
read packet: $e0030100#b9
2529+
```
25242530
25252531
**Priority to Implement:** Only required for Wasm support. Necessary to show
25262532
variables.

0 commit comments

Comments
 (0)