Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mariadb
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
0b58af09
Commit
0b58af09
authored
Jun 11, 2007
by
tomas@whalegate.ndb.mysql.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
make function static
parent
5556ec7c
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
storage/ndb/src/ndbapi/NdbEventOperationImpl.cpp
storage/ndb/src/ndbapi/NdbEventOperationImpl.cpp
+1
-1
storage/ndb/src/ndbapi/ndb_internal.hpp
storage/ndb/src/ndbapi/ndb_internal.hpp
+1
-1
No files found.
storage/ndb/src/ndbapi/NdbEventOperationImpl.cpp
View file @
0b58af09
...
...
@@ -2839,7 +2839,7 @@ send_report:
data
[
5
]
=
apply_gci
>>
32
;
data
[
6
]
=
latest_gci
&
~
(
Uint32
)
0
;
data
[
7
]
=
latest_gci
>>
32
;
Ndb_internal
().
send_event_report
(
m_ndb
,
data
,
8
);
Ndb_internal
::
send_event_report
(
m_ndb
,
data
,
8
);
#ifdef VM_TRACE
assert
(
m_total_alloc
>=
m_free_data_sz
);
#endif
...
...
storage/ndb/src/ndbapi/ndb_internal.hpp
View file @
0b58af09
...
...
@@ -21,6 +21,6 @@ private:
friend
class
NdbEventBuffer
;
Ndb_internal
()
{}
virtual
~
Ndb_internal
()
{}
int
send_event_report
(
Ndb
*
ndb
,
Uint32
*
data
,
Uint32
length
)
static
int
send_event_report
(
Ndb
*
ndb
,
Uint32
*
data
,
Uint32
length
)
{
return
ndb
->
theImpl
->
send_event_report
(
data
,
length
);
}
};
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment