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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
e7558d47
Commit
e7558d47
authored
Jan 16, 2020
by
Sergei Golubchik
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix compilation w/o perfschema
followup for
3a3605f4
parent
fc5a6a28
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
2 deletions
+3
-2
storage/innobase/include/os0file.h
storage/innobase/include/os0file.h
+1
-2
storage/innobase/os/os0file.cc
storage/innobase/os/os0file.cc
+2
-0
No files found.
storage/innobase/include/os0file.h
View file @
e7558d47
...
...
@@ -1124,8 +1124,7 @@ to original un-instrumented file I/O APIs */
# define os_file_flush(file) os_file_flush_func(file)
#define os_file_flush_data(file) \
pfs_os_file_flush_data_func(file, __FILE__, __LINE__)
#define os_file_flush_data(file) os_file_flush_data_func(file)
# define os_file_rename(key, oldpath, newpath) \
os_file_rename_func(oldpath, newpath)
...
...
storage/innobase/os/os0file.cc
View file @
e7558d47
...
...
@@ -4631,6 +4631,7 @@ bool os_file_flush_data_func(os_file_t file) {
#endif
}
#ifdef UNIV_PFS_IO
bool
pfs_os_file_flush_data_func
(
pfs_os_file_t
file
,
const
char
*
src_file
,
uint
src_line
)
{
...
...
@@ -4645,3 +4646,4 @@ bool pfs_os_file_flush_data_func(pfs_os_file_t file, const char *src_file,
register_pfs_file_io_end
(
locker
,
0
);
return
success
;
}
#endif
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