@@ -682,7 +682,7 @@ pub mod raw {
682682 /// Returns an error:
683683 ///
684684 /// - `WOULD_BLOCK_TRANSACTION`, if there's already an ongoing transaction.
685- pub fn procedure_start_mut_transaction ( out : * mut i64 ) -> u16 ;
685+ pub fn procedure_start_mut_tx ( out : * mut i64 ) -> u16 ;
686686
687687 /// Commits a mutable transaction,
688688 /// suspending execution of this WASM instance until
@@ -700,14 +700,14 @@ pub mod raw {
700700 /// Returns an error:
701701 ///
702702 /// - `TRANSACTION_NOT_ANONYMOUS`,
703- /// if the transaction was not started in [`procedure_start_mut_transaction `].
703+ /// if the transaction was not started in [`procedure_start_mut_tx `].
704704 /// This can happen if this syscall is erroneously called by a reducer.
705705 /// The code `NOT_IN_TRANSACTION` does not happen,
706706 /// as it is subsumed by `TRANSACTION_NOT_ANONYMOUS`.
707707 /// - `TRANSACTION_IS_READ_ONLY`, if the pending transaction is read-only.
708708 /// This currently does not happen as anonymous read transactions
709709 /// are not exposed to modules.
710- pub fn procedure_commit_mut_transaction ( ) -> u16 ;
710+ pub fn procedure_commit_mut_tx ( ) -> u16 ;
711711
712712 /// Aborts a mutable transaction,
713713 /// suspending execution of this WASM instance until
@@ -724,14 +724,14 @@ pub mod raw {
724724 /// Returns an error:
725725 ///
726726 /// - `TRANSACTION_NOT_ANONYMOUS`,
727- /// if the transaction was not started in [`procedure_start_mut_transaction `].
727+ /// if the transaction was not started in [`procedure_start_mut_tx `].
728728 /// This can happen if this syscall is erroneously called by a reducer.
729729 /// The code `NOT_IN_TRANSACTION` does not happen,
730730 /// as it is subsumed by `TRANSACTION_NOT_ANONYMOUS`.
731731 /// - `TRANSACTION_IS_READ_ONLY`, if the pending transaction is read-only.
732732 /// This currently does not happen as anonymous read transactions
733733 /// are not exposed to modules.
734- pub fn procedure_abort_mut_transaction ( ) -> u16 ;
734+ pub fn procedure_abort_mut_tx ( ) -> u16 ;
735735 }
736736
737737 /// What strategy does the database index use?
@@ -1346,8 +1346,8 @@ pub mod procedure {
13461346 ///
13471347 /// - `WOULD_BLOCK_TRANSACTION`, if there's already an ongoing transaction.
13481348 #[ inline]
1349- pub fn procedure_start_mut_transaction ( ) -> Result < i64 > {
1350- unsafe { call ( |out| raw:: procedure_start_mut_transaction ( out) ) }
1349+ pub fn procedure_start_mut_tx ( ) -> Result < i64 > {
1350+ unsafe { call ( |out| raw:: procedure_start_mut_tx ( out) ) }
13511351 }
13521352
13531353 /// Commits a mutable transaction,
@@ -1362,16 +1362,16 @@ pub mod procedure {
13621362 /// Returns an error:
13631363 ///
13641364 /// - `TRANSACTION_NOT_ANONYMOUS`,
1365- /// if the transaction was not started in [`procedure_start_mut_transaction `].
1365+ /// if the transaction was not started in [`procedure_start_mut_tx `].
13661366 /// This can happen if this syscall is erroneously called by a reducer.
13671367 /// The code `NOT_IN_TRANSACTION` does not happen,
13681368 /// as it is subsumed by `TRANSACTION_NOT_ANONYMOUS`.
13691369 /// - `TRANSACTION_IS_READ_ONLY`, if the pending transaction is read-only.
13701370 /// This currently does not happen as anonymous read transactions
13711371 /// are not exposed to modules.
13721372 #[ inline]
1373- pub fn procedure_commit_mut_transaction ( ) -> Result < ( ) > {
1374- call_no_ret ( || unsafe { raw:: procedure_commit_mut_transaction ( ) } )
1373+ pub fn procedure_commit_mut_tx ( ) -> Result < ( ) > {
1374+ call_no_ret ( || unsafe { raw:: procedure_commit_mut_tx ( ) } )
13751375 }
13761376
13771377 /// Aborts a mutable transaction,
@@ -1385,15 +1385,15 @@ pub mod procedure {
13851385 /// Returns an error:
13861386 ///
13871387 /// - `TRANSACTION_NOT_ANONYMOUS`,
1388- /// if the transaction was not started in [`procedure_start_mut_transaction `].
1388+ /// if the transaction was not started in [`procedure_start_mut_tx `].
13891389 /// This can happen if this syscall is erroneously called by a reducer.
13901390 /// The code `NOT_IN_TRANSACTION` does not happen,
13911391 /// as it is subsumed by `TRANSACTION_NOT_ANONYMOUS`.
13921392 /// - `TRANSACTION_IS_READ_ONLY`, if the pending transaction is read-only.
13931393 /// This currently does not happen as anonymous read transactions
13941394 /// are not exposed to modules.
13951395 #[ inline]
1396- pub fn procedure_abort_mut_transaction ( ) -> Result < ( ) > {
1397- call_no_ret ( || unsafe { raw:: procedure_abort_mut_transaction ( ) } )
1396+ pub fn procedure_abort_mut_tx ( ) -> Result < ( ) > {
1397+ call_no_ret ( || unsafe { raw:: procedure_abort_mut_tx ( ) } )
13981398 }
13991399}
0 commit comments