File tree Expand file tree Collapse file tree 2 files changed +7
-8
lines changed Expand file tree Collapse file tree 2 files changed +7
-8
lines changed Original file line number Diff line number Diff line change 1
1
/* ****************************************************************************
2
2
3
3
Copyright (c) 1997, 2013, Oracle and/or its affiliates. All Rights Reserved.
4
+ Copyright (c) 2019, MariaDB Corporation.
4
5
5
6
This program is free software; you can redistribute it and/or modify it under
6
7
the terms of the GNU General Public License as published by the Free Software
@@ -49,9 +50,9 @@ class MVCC {
49
50
void view_open (ReadView*& view, trx_t * trx);
50
51
51
52
/* *
52
- Close a view created by the above function .
53
- @para view view allocated by trx_open.
54
- @param own_mutex true if caller owns trx_sys_t::mutex */
53
+ Close a view created by view_open() .
54
+ @param view view allocated by view_open()
55
+ @param own_mutex whether the caller owns trx_sys_t::mutex */
55
56
void view_close (ReadView*& view, bool own_mutex);
56
57
57
58
/* *
Original file line number Diff line number Diff line change @@ -740,11 +740,9 @@ MVCC::size() const
740
740
741
741
/* *
742
742
Close a view created by the above function.
743
- @para view view allocated by trx_open.
744
- @param own_mutex true if caller owns trx_sys_t::mutex */
745
-
746
- void
747
- MVCC::view_close (ReadView*& view, bool own_mutex)
743
+ @param view view allocated by view_open()
744
+ @param own_mutex whether the caller owns trx_sys_t::mutex */
745
+ void MVCC::view_close (ReadView*& view, bool own_mutex)
748
746
{
749
747
uintptr_t p = reinterpret_cast <uintptr_t >(view);
750
748
You can’t perform that action at this time.
0 commit comments