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
c098c27a
Commit
c098c27a
authored
19 years ago
by
marko@hundin.mysql.fi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
InnoDB: Win64 portability fixes
parent
aa7f41b3
Branches unavailable
Tags unavailable
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
9 deletions
+10
-9
innobase/include/srv0srv.h
innobase/include/srv0srv.h
+5
-4
innobase/srv/srv0srv.c
innobase/srv/srv0srv.c
+5
-5
No files found.
innobase/include/srv0srv.h
View file @
c098c27a
...
...
@@ -93,7 +93,7 @@ extern ulint srv_max_n_open_files;
extern
ulint
srv_max_dirty_pages_pct
;
extern
ulint
srv_force_recovery
;
extern
ul
int
srv_thread_concurrency
;
extern
ul
ong
srv_thread_concurrency
;
extern
ulint
srv_max_n_threads
;
...
...
@@ -112,6 +112,7 @@ extern ibool srv_use_checksums;
extern
ibool
srv_set_thread_priorities
;
extern
int
srv_query_thread_priority
;
extern
ulong
srv_max_buf_pool_modified_pct
;
extern
ulong
srv_max_purge_lag
;
extern
ibool
srv_use_awe
;
extern
ibool
srv_use_adaptive_hash_indexes
;
...
...
@@ -131,9 +132,9 @@ extern ibool srv_print_innodb_table_monitor;
extern
ibool
srv_lock_timeout_and_monitor_active
;
extern
ibool
srv_error_monitor_active
;
extern
ul
int
srv_n_spin_wait_rounds
;
extern
ul
int
srv_n_free_tickets_to_enter
;
extern
ul
int
srv_thread_sleep_delay
;
extern
ul
ong
srv_n_spin_wait_rounds
;
extern
ul
ong
srv_n_free_tickets_to_enter
;
extern
ul
ong
srv_thread_sleep_delay
;
extern
ulint
srv_spin_wait_delay
;
extern
ibool
srv_priority_boost
;
...
...
This diff is collapsed.
Click to expand it.
innobase/srv/srv0srv.c
View file @
c098c27a
...
...
@@ -185,7 +185,7 @@ in the buffer pool to all database pages in the buffer pool smaller than
the following number. But it is not guaranteed that the value stays below
that during a time of heavy update/insert activity. */
ul
int
srv_max_buf_pool_modified_pct
=
90
;
ul
ong
srv_max_buf_pool_modified_pct
=
90
;
/* variable counts amount of data read in total (in bytes) */
ulint
srv_data_read
=
0
;
...
...
@@ -260,7 +260,7 @@ semaphore contention and convoy problems can occur withput this restriction.
Value 10 should be good if there are less than 4 processors + 4 disks in the
computer. Bigger computers need bigger values. */
ul
int
srv_thread_concurrency
=
8
;
ul
ong
srv_thread_concurrency
=
8
;
os_fast_mutex_t
srv_conc_mutex
;
/* this mutex protects srv_conc data
structures */
...
...
@@ -324,9 +324,9 @@ ibool srv_use_awe = FALSE;
ibool
srv_use_adaptive_hash_indexes
=
TRUE
;
/*-------------------------------------------*/
ul
int
srv_n_spin_wait_rounds
=
20
;
ul
int
srv_n_free_tickets_to_enter
=
500
;
ul
int
srv_thread_sleep_delay
=
10000
;
ul
ong
srv_n_spin_wait_rounds
=
20
;
ul
ong
srv_n_free_tickets_to_enter
=
500
;
ul
ong
srv_thread_sleep_delay
=
10000
;
ulint
srv_spin_wait_delay
=
5
;
ibool
srv_priority_boost
=
TRUE
;
...
...
This diff is collapsed.
Click to expand it.
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