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
1901fe6e
Commit
1901fe6e
authored
Apr 18, 2007
by
serg@janus.mylan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
comment
parent
fccc852e
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
5 deletions
+8
-5
sql/sql_plugin.cc
sql/sql_plugin.cc
+8
-5
No files found.
sql/sql_plugin.cc
View file @
1901fe6e
...
@@ -92,17 +92,20 @@ static int cur_plugin_info_interface_version[MYSQL_MAX_PLUGIN_TYPE_NUM]=
...
@@ -92,17 +92,20 @@ static int cur_plugin_info_interface_version[MYSQL_MAX_PLUGIN_TYPE_NUM]=
MYSQL_INFORMATION_SCHEMA_INTERFACE_VERSION
MYSQL_INFORMATION_SCHEMA_INTERFACE_VERSION
};
};
static
bool
initialized
=
0
;
/*
A mutex LOCK_plugin must be acquired before accessing the
following variables/structures.
We are always manipulating ref count, so a rwlock here is unneccessary.
*/
static
pthread_mutex_t
LOCK_plugin
;
static
DYNAMIC_ARRAY
plugin_dl_array
;
static
DYNAMIC_ARRAY
plugin_dl_array
;
static
DYNAMIC_ARRAY
plugin_array
;
static
DYNAMIC_ARRAY
plugin_array
;
static
HASH
plugin_hash
[
MYSQL_MAX_PLUGIN_TYPE_NUM
];
static
HASH
plugin_hash
[
MYSQL_MAX_PLUGIN_TYPE_NUM
];
/* we are always manipulating ref count, so a rwlock is unneccessary */
static
pthread_mutex_t
LOCK_plugin
;
static
bool
initialized
=
0
;
static
bool
reap_needed
=
false
;
static
bool
reap_needed
=
false
;
static
int
plugin_array_version
=
0
;
static
int
plugin_array_version
=
0
;
/*
/*
write-lock on LOCK_system_variables_hash is required before modifying
write-lock on LOCK_system_variables_hash is required before modifying
the following variables/structures
the following variables/structures
...
...
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