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
93e9d81e
Commit
93e9d81e
authored
Feb 12, 2016
by
Alexey Botchkov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Errorneous PSI declaration line fixed.
parent
a9a08b1e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
3 deletions
+7
-3
plugin/server_audit/server_audit.c
plugin/server_audit/server_audit.c
+7
-3
No files found.
plugin/server_audit/server_audit.c
View file @
93e9d81e
...
...
@@ -537,10 +537,14 @@ static struct st_mysql_show_var audit_status[]=
#if defined(HAVE_PSI_INTERFACE) && !defined(FLOGGER_NO_PSI)
/* These belong to the service initialization */
static
PSI_mutex_key
key_LOCK_operations
;
static
PSI_mutex_key
key_LOCK_bigbuffer
;
static
PSI_mutex_info
mutex_key_list
[]
=
{{
&
key_LOCK_operations
,
"SERVER_AUDIT_plugin::lock_operations"
,
{{
&
key_LOCK_bigbuffer
,
"SERVER_AUDIT_plugin::lock_bigbuffer"
,
PSI_FLAG_GLOBAL
}};
{
{
&
key_LOCK_operations
,
"SERVER_AUDIT_plugin::lock_operations"
,
PSI_FLAG_GLOBAL
},
{
&
key_LOCK_bigbuffer
,
"SERVER_AUDIT_plugin::lock_bigbuffer"
,
PSI_FLAG_GLOBAL
}
};
#endif
static
mysql_mutex_t
lock_operations
;
static
mysql_mutex_t
lock_bigbuffer
;
...
...
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