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
94e46a01
Commit
94e46a01
authored
Oct 17, 2008
by
Mikael Ronstrom
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed compiler warnings
parent
27046be1
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
11 additions
and
7 deletions
+11
-7
storage/innobase/os/os0file.c
storage/innobase/os/os0file.c
+2
-2
storage/innobase/srv/srv0srv.c
storage/innobase/srv/srv0srv.c
+3
-1
storage/innobase/srv/srv0start.c
storage/innobase/srv/srv0start.c
+6
-4
No files found.
storage/innobase/os/os0file.c
View file @
94e46a01
...
...
@@ -4403,9 +4403,9 @@ loop:
putc
(
'\n'
,
file
);
fprintf
(
file
,
"Summary of background IO slot status: %lu issued, "
"%lu done, %lu claimed, sleep set %
u
\n
"
,
"%lu done, %lu claimed, sleep set %
d
\n
"
,
num_issued
,
num_done
,
num_claimed
,
os_aio_recommend_sleep_for_read_threads
);
(
int
)
os_aio_recommend_sleep_for_read_threads
);
putc
(
'\n'
,
file
);
current_time
=
time
(
NULL
);
...
...
storage/innobase/srv/srv0srv.c
View file @
94e46a01
...
...
@@ -706,7 +706,9 @@ srv_print_extra(
(
double
)
srv_thread_wait_mics
/
1000000
.
0
);
fprintf
(
file
,
"spinlock delay for %d delay %d rounds is %lld mics
\n
"
,
srv_spin_wait_delay
,
SYNC_SPIN_ROUNDS
,
srv_timed_spin_delay
);
(
int
)
srv_spin_wait_delay
,
(
int
)
SYNC_SPIN_ROUNDS
,
srv_timed_spin_delay
);
}
/*************************************************************************
...
...
storage/innobase/srv/srv0start.c
View file @
94e46a01
...
...
@@ -1251,8 +1251,10 @@ innobase_start_or_create_for_mysql(void)
/* Restrict the maximum number of file i/o threads */
if
((
srv_n_read_io_threads
+
srv_n_write_io_threads
)
>
SRV_MAX_N_IO_THREADS
)
{
fprintf
(
stderr
,
"InnoDB: requested too many read(%u) or write(%u) IO threads, max is %d
\n
"
,
srv_n_read_io_threads
,
srv_n_write_io_threads
,
SRV_MAX_N_IO_THREADS
);
"InnoDB: requested too many read(%d) or write(%d) IO threads, max is %d
\n
"
,
(
int
)
srv_n_read_io_threads
,
(
int
)
srv_n_write_io_threads
,
SRV_MAX_N_IO_THREADS
);
return
(
DB_ERROR
);
}
...
...
@@ -1272,8 +1274,8 @@ innobase_start_or_create_for_mysql(void)
if
(
n_threads
>
SRV_MAX_N_IO_THREADS
)
{
fprintf
(
stderr
,
"InnoDB: requested too many IO threads(%
u
), max is %d
\n
"
,
n_threads
,
SRV_MAX_N_IO_THREADS
);
"InnoDB: requested too many IO threads(%
d
), max is %d
\n
"
,
(
int
)
n_threads
,
SRV_MAX_N_IO_THREADS
);
return
(
DB_ERROR
);
}
...
...
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