Files
xahaud/src/xrpld
Bronek Kozicki 4f8096f378 Fix potential deadlock (#5124)
* 2.2.2 changed functions acquireAsync and NetworkOPsImp::recvValidation to add an item to a collection under lock, unlock, do some work, then lock again to do remove the item. It will deadlock if an exception is thrown while adding the item - before unlocking.
* Replace ScopedUnlock with scope_unlock.
2025-06-19 10:14:43 +09:00
..
2025-06-19 10:14:43 +09:00
2025-06-18 14:13:10 +09:00
2025-06-18 12:17:28 +09:00
2025-06-18 14:13:10 +09:00
2025-06-18 14:13:10 +09:00
2025-06-17 19:16:40 +09:00

Ripple Source Guidelines

Each folder contains a single module following the newest style:

  • One class per header
  • As much implementation hidden as possible
  • All major interfaces are abstract
  • Every class is documented
  • Each module focuses on solving one problem