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
af297a21
Commit
af297a21
authored
Nov 28, 2000
by
tim@threads.polyesthetic.msg
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mysql_priv.h manager_status is volatile
sql_manager.cc manager_status is volatile
parent
ea0a7491
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
sql/mysql_priv.h
sql/mysql_priv.h
+1
-1
sql/sql_manager.cc
sql/sql_manager.cc
+1
-1
No files found.
sql/mysql_priv.h
View file @
af297a21
...
...
@@ -426,7 +426,7 @@ int write_record(TABLE *table,COPY_INFO *info);
/* sql_manager.cc */
/* bits set in manager_status */
#define MANAGER_BERKELEY_LOG_CLEANUP (1L << 0)
extern
ulong
manager_status
;
extern
ulong
volatile
manager_status
;
extern
bool
volatile
manager_thread_in_use
;
extern
pthread_t
manager_thread
;
extern
pthread_mutex_t
LOCK_manager
;
...
...
sql/sql_manager.cc
View file @
af297a21
...
...
@@ -25,7 +25,7 @@
#include "mysql_priv.h"
#include "sql_manager.h"
ulong
manager_status
;
ulong
volatile
manager_status
;
bool
volatile
manager_thread_in_use
;
pthread_t
manager_thread
;
...
...
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