mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-11-15 08:31:49 +01:00
scripted-diff: Adjust documentation per top-level target output location
-BEGIN VERIFY SCRIPT-
ren() { sed -i "s|\<$1\>|$2|g" $( git grep -l "$1" :\(exclude\)./src/secp256k1 ) ; }
ren build/src/bench build/bin
ren build/src/test build/bin
ren build/src/qt/test build/bin
ren build/src/qt build/bin
ren build/src build/bin
ren build_fuzz/src/test/fuzz build_fuzz/bin
-END VERIFY SCRIPT-
This commit is contained in:
@@ -430,13 +430,13 @@ USDT support.
|
||||
To list probes in Bitcoin Core, use `info probes` in `gdb`:
|
||||
|
||||
```
|
||||
$ gdb ./build/src/bitcoind
|
||||
$ gdb ./build/bin/bitcoind
|
||||
…
|
||||
(gdb) info probes
|
||||
Type Provider Name Where Semaphore Object
|
||||
stap net inbound_message 0x000000000014419e 0x0000000000d29bd2 /build/src/bitcoind
|
||||
stap net outbound_message 0x0000000000107c05 0x0000000000d29bd0 /build/src/bitcoind
|
||||
stap validation block_connected 0x00000000002fb10c 0x0000000000d29bd8 /build/src/bitcoind
|
||||
stap net inbound_message 0x000000000014419e 0x0000000000d29bd2 /build/bin/bitcoind
|
||||
stap net outbound_message 0x0000000000107c05 0x0000000000d29bd0 /build/bin/bitcoind
|
||||
stap validation block_connected 0x00000000002fb10c 0x0000000000d29bd8 /build/bin/bitcoind
|
||||
…
|
||||
```
|
||||
|
||||
@@ -446,7 +446,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 ./build/src/bitcoind | grep NT_STAPSDT -A 4 -B 2
|
||||
$ readelf -n ./build/bin/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)
|
||||
@@ -470,7 +470,7 @@ between distributions. For example, on
|
||||
[ubuntu binary]: https://github.com/iovisor/bcc/blob/master/INSTALL.md#ubuntu---binary
|
||||
|
||||
```
|
||||
$ tplist -l ./build/src/bitcoind -v
|
||||
$ tplist -l ./build/bin/bitcoind -v
|
||||
b'net':b'outbound_message' [sema 0xd29bd0]
|
||||
1 location(s)
|
||||
6 argument(s)
|
||||
|
||||
Reference in New Issue
Block a user