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
8875c2c2
Commit
8875c2c2
authored
Oct 19, 2010
by
Davi Arnaut
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug#45288: pb2 returns a lot of compilation warnings on linux
Tag unused arguments. Approved by: Marko (via IRC)
parent
18371055
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
3 deletions
+6
-3
storage/innobase/os/os0file.c
storage/innobase/os/os0file.c
+6
-3
No files found.
storage/innobase/os/os0file.c
View file @
8875c2c2
...
...
@@ -1138,9 +1138,12 @@ Tries to disable OS caching on an opened file descriptor. */
void
os_file_set_nocache
(
/*================*/
int
fd
,
/* in: file descriptor to alter */
const
char
*
file_name
,
/* in: used in the diagnostic message */
const
char
*
operation_name
)
/* in: used in the diagnostic message,
int
fd
/* in: file descriptor to alter */
__attribute__
((
unused
)),
const
char
*
file_name
/* in: used in the diagnostic message */
__attribute__
((
unused
)),
const
char
*
operation_name
__attribute__
((
unused
)))
/* in: used in the diagnostic message,
we call os_file_set_nocache()
immediately after opening or creating
a file, so this is either "open" or
...
...
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