diff options
author | Anthony Towns <aj@erisian.com.au> | 2021-02-01 01:35:08 +1000 |
---|---|---|
committer | Anthony Towns <aj@erisian.com.au> | 2021-02-26 23:55:10 +1000 |
commit | 38a11c355acfc15134c682571b3d92f66b0e7c3c (patch) | |
tree | 05fb4cb6b122f806b6a5a9cd81c75f4989b32f9d /src/txorphanage.h | |
parent | 81dd57e5b1ab1afa7e59468e30ef41bd34f0c8d7 (diff) |
txorphanage: Add lock annotations
EraseOrphansFor was called both with and without g_cs_orphans held,
correct that so that it's always called with it already held.
LimitOrphanTxSize was always called with g_cs_orphans held, so
add annotations and don't lock it a second time.
Diffstat (limited to 'src/txorphanage.h')
-rw-r--r-- | src/txorphanage.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/txorphanage.h b/src/txorphanage.h index 343f12c9c5..d8dfaec8a0 100644 --- a/src/txorphanage.h +++ b/src/txorphanage.h @@ -24,8 +24,8 @@ struct COrphanTx { }; int EraseOrphanTx(const uint256& txid) EXCLUSIVE_LOCKS_REQUIRED(g_cs_orphans); -void EraseOrphansFor(NodeId peer); -unsigned int LimitOrphanTxSize(unsigned int nMaxOrphans); +void EraseOrphansFor(NodeId peer) EXCLUSIVE_LOCKS_REQUIRED(g_cs_orphans); +unsigned int LimitOrphanTxSize(unsigned int nMaxOrphans) EXCLUSIVE_LOCKS_REQUIRED(g_cs_orphans); /** Map from txid to orphan transaction record. Limited by * -maxorphantx/DEFAULT_MAX_ORPHAN_TRANSACTIONS */ |