Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
TransactionStatePromotedP0Aborting.cs
Go to the documentation of this file.
2
3namespace System.Transactions;
4
6{
7 internal override void EnterState(InternalTransaction tx)
8 {
12 {
13 Monitor.Exit(tx);
14 try
15 {
17 return;
18 }
19 finally
20 {
21 Monitor.Enter(tx);
22 }
23 }
24 tx.PromotedTransaction.Rollback();
25 }
26
28 {
29 }
30}
static void Exit(object obj)
static void Enter(object obj)
void CommonEnterState(InternalTransaction tx)