mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-07-28 11:02:46 +02:00
doc: Prepend 'build/' to binary paths under 'src/' in docs
This commit is contained in:
@@ -366,13 +366,13 @@ USDT support.
|
||||
To list probes in Bitcoin Core, use `info probes` in `gdb`:
|
||||
|
||||
```
|
||||
$ gdb ./src/bitcoind
|
||||
$ gdb ./build/src/bitcoind
|
||||
…
|
||||
(gdb) info probes
|
||||
Type Provider Name Where Semaphore Object
|
||||
stap net inbound_message 0x000000000014419e /src/bitcoind
|
||||
stap net outbound_message 0x0000000000107c05 /src/bitcoind
|
||||
stap validation block_connected 0x00000000002fb10c /src/bitcoind
|
||||
stap net inbound_message 0x000000000014419e /build/src/bitcoind
|
||||
stap net outbound_message 0x0000000000107c05 /build/src/bitcoind
|
||||
stap validation block_connected 0x00000000002fb10c /build/src/bitcoind
|
||||
…
|
||||
```
|
||||
|
||||
@@ -382,7 +382,7 @@ The `readelf` tool can be used to display the USDT tracepoints in Bitcoin Core.
|
||||
Look for the notes with the description `NT_STAPSDT`.
|
||||
|
||||
```
|
||||
$ readelf -n ./src/bitcoind | grep NT_STAPSDT -A 4 -B 2
|
||||
$ readelf -n ./build/src/bitcoind | grep NT_STAPSDT -A 4 -B 2
|
||||
Displaying notes found in: .note.stapsdt
|
||||
Owner Data size Description
|
||||
stapsdt 0x0000005d NT_STAPSDT (SystemTap probe descriptors)
|
||||
@@ -406,7 +406,7 @@ between distributions. For example, on
|
||||
[ubuntu binary]: https://github.com/iovisor/bcc/blob/master/INSTALL.md#ubuntu---binary
|
||||
|
||||
```
|
||||
$ tplist -l ./src/bitcoind -v
|
||||
$ tplist -l ./build/src/bitcoind -v
|
||||
b'net':b'outbound_message' [sema 0x0]
|
||||
1 location(s)
|
||||
6 argument(s)
|
||||
|
Reference in New Issue
Block a user