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
ce553fc2
Commit
ce553fc2
authored
Mar 01, 2005
by
marko@hundin.mysql.fi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
InnoDB: Fix compilation errors on IA-64 Windows
parent
a06c6d41
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
innobase/include/srv0srv.h
innobase/include/srv0srv.h
+2
-2
innobase/srv/srv0srv.c
innobase/srv/srv0srv.c
+2
-2
No files found.
innobase/include/srv0srv.h
View file @
ce553fc2
...
@@ -50,7 +50,7 @@ extern ulint* srv_data_file_is_raw_partition;
...
@@ -50,7 +50,7 @@ extern ulint* srv_data_file_is_raw_partition;
extern
ibool
srv_auto_extend_last_data_file
;
extern
ibool
srv_auto_extend_last_data_file
;
extern
ulint
srv_last_file_size_max
;
extern
ulint
srv_last_file_size_max
;
extern
ul
int
srv_auto_extend_increment
;
extern
ul
ong
srv_auto_extend_increment
;
extern
ibool
srv_created_new_raw
;
extern
ibool
srv_created_new_raw
;
...
@@ -101,7 +101,7 @@ extern ibool srv_use_doublewrite_buf;
...
@@ -101,7 +101,7 @@ extern ibool srv_use_doublewrite_buf;
extern
ibool
srv_set_thread_priorities
;
extern
ibool
srv_set_thread_priorities
;
extern
int
srv_query_thread_priority
;
extern
int
srv_query_thread_priority
;
extern
ul
int
srv_max_purge_lag
;
extern
ul
ong
srv_max_purge_lag
;
/*-------------------------------------------*/
/*-------------------------------------------*/
extern
ulint
srv_n_rows_inserted
;
extern
ulint
srv_n_rows_inserted
;
...
...
innobase/srv/srv0srv.c
View file @
ce553fc2
...
@@ -86,7 +86,7 @@ ulint srv_last_file_size_max = 0; /* if != 0, this tells
...
@@ -86,7 +86,7 @@ ulint srv_last_file_size_max = 0; /* if != 0, this tells
the max size auto-extending
the max size auto-extending
may increase the last data
may increase the last data
file size */
file size */
ul
int
srv_auto_extend_increment
=
8
;
/* If the last data file is
ul
ong
srv_auto_extend_increment
=
8
;
/* If the last data file is
auto-extended, we add this
auto-extended, we add this
many pages to it at a time */
many pages to it at a time */
ulint
*
srv_data_file_is_raw_partition
=
NULL
;
ulint
*
srv_data_file_is_raw_partition
=
NULL
;
...
@@ -849,7 +849,7 @@ srv_general_init(void)
...
@@ -849,7 +849,7 @@ srv_general_init(void)
/*======================= InnoDB Server FIFO queue =======================*/
/*======================= InnoDB Server FIFO queue =======================*/
/* Maximum allowable purge history length. <=0 means 'infinite'. */
/* Maximum allowable purge history length. <=0 means 'infinite'. */
ul
int
srv_max_purge_lag
=
0
;
ul
ong
srv_max_purge_lag
=
0
;
/*************************************************************************
/*************************************************************************
Puts an OS thread to wait if there are too many concurrent threads
Puts an OS thread to wait if there are too many concurrent threads
...
...
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