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
732d702f
Commit
732d702f
authored
Mar 14, 2001
by
heikki@donna.mysql.fi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
srv0srv.c Eliminate another warning on HP-UX
parent
181a9ac9
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
9 deletions
+9
-9
innobase/srv/srv0srv.c
innobase/srv/srv0srv.c
+9
-9
No files found.
innobase/srv/srv0srv.c
View file @
732d702f
...
@@ -899,8 +899,8 @@ void
...
@@ -899,8 +899,8 @@ void
srv_create_utility_threads
(
void
)
srv_create_utility_threads
(
void
)
/*============================*/
/*============================*/
{
{
os_thread_t
thread
;
/*
os_thread_t thread;
/*
os_thread_id_t thr_id; */
os_thread_id_t thr_id; */
ulint
i
;
ulint
i
;
mutex_enter
(
&
kernel_mutex
);
mutex_enter
(
&
kernel_mutex
);
...
@@ -913,7 +913,7 @@ srv_create_utility_threads(void)
...
@@ -913,7 +913,7 @@ srv_create_utility_threads(void)
for
(
i
=
0
;
i
<
1
;
i
++
)
{
for
(
i
=
0
;
i
<
1
;
i
++
)
{
/* thread = os_thread_create(srv_recovery_thread, NULL, &thr_id); */
/* thread = os_thread_create(srv_recovery_thread, NULL, &thr_id); */
ut_a
(
thread
);
/* ut_a(thread); */
}
}
/* thread = os_thread_create(srv_purge_thread, NULL, &thr_id);
/* thread = os_thread_create(srv_purge_thread, NULL, &thr_id);
...
@@ -978,15 +978,15 @@ void
...
@@ -978,15 +978,15 @@ void
srv_create_com_threads
(
void
)
srv_create_com_threads
(
void
)
/*========================*/
/*========================*/
{
{
os_thread_t
thread
;
/*
os_thread_t thread;
/*
os_thread_id_t thr_id; */
os_thread_id_t thr_id; */
ulint
i
;
ulint
i
;
srv_n_threads
[
SRV_COM
]
=
srv_n_com_threads
;
srv_n_threads
[
SRV_COM
]
=
srv_n_com_threads
;
for
(
i
=
0
;
i
<
srv_n_com_threads
;
i
++
)
{
for
(
i
=
0
;
i
<
srv_n_com_threads
;
i
++
)
{
/* thread = os_thread_create(srv_com_thread, NULL, &thr_id); */
/* thread = os_thread_create(srv_com_thread, NULL, &thr_id); */
ut_a
(
thread
);
/* ut_a(thread); */
}
}
}
}
...
@@ -1042,8 +1042,8 @@ void
...
@@ -1042,8 +1042,8 @@ void
srv_create_worker_threads
(
void
)
srv_create_worker_threads
(
void
)
/*===========================*/
/*===========================*/
{
{
os_thread_t
thread
;
/*
os_thread_t thread;
/*
os_thread_id_t thr_id; */
os_thread_id_t thr_id; */
ulint
i
;
ulint
i
;
srv_n_threads
[
SRV_WORKER
]
=
srv_n_worker_threads
;
srv_n_threads
[
SRV_WORKER
]
=
srv_n_worker_threads
;
...
@@ -1051,7 +1051,7 @@ srv_create_worker_threads(void)
...
@@ -1051,7 +1051,7 @@ srv_create_worker_threads(void)
for
(
i
=
0
;
i
<
srv_n_worker_threads
;
i
++
)
{
for
(
i
=
0
;
i
<
srv_n_worker_threads
;
i
++
)
{
/* thread = os_thread_create(srv_worker_thread, NULL, &thr_id); */
/* thread = os_thread_create(srv_worker_thread, NULL, &thr_id); */
ut_a
(
thread
);
/* ut_a(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