Minor documentation updates

This commit is contained in:
Gavin Andresen
2012-09-05 12:09:37 -04:00
parent 91c218a1cb
commit aeea5e2a2d
3 changed files with 22 additions and 9 deletions

View File

@@ -44,7 +44,7 @@ bn CBigNum
Locking/mutex usage notes
The code is multi-threaded, and uses mutexes and the
CRITICAL_BLOCK/TRY_CRITICAL_BLOCK macros to protect data structures.
LOCK/TRY_LOCK macros to protect data structures.
Deadlocks due to inconsistent lock ordering (thread 1 locks cs_main
and then cs_wallet, while thread 2 locks them in the opposite order: