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
0a04b59b
Commit
0a04b59b
authored
Mar 14, 2001
by
paul@central.snake.net
Browse files
Options
Browse Files
Download
Plain Diff
Merge work.mysql.com:/home/bk/mysql
into central.snake.net:/home/paul/mysql
parents
662c7fdf
dc95f565
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
31 additions
and
15 deletions
+31
-15
innobase/include/page0types.h
innobase/include/page0types.h
+2
-0
innobase/os/os0thread.c
innobase/os/os0thread.c
+15
-1
innobase/srv/srv0srv.c
innobase/srv/srv0srv.c
+12
-12
innobase/srv/srv0start.c
innobase/srv/srv0start.c
+2
-2
No files found.
innobase/include/page0types.h
View file @
0a04b59b
...
...
@@ -12,6 +12,8 @@ Created 2/2/1994 Heikki Tuuri
#include "univ.i"
/* Type of the index page */
/* The following define eliminates a name collision on HP-UX */
#define page_t ib_page_t
typedef
byte
page_t
;
typedef
struct
page_search_struct
page_search_t
;
typedef
struct
page_cur_struct
page_cur_t
;
...
...
innobase/os/os0thread.c
View file @
0a04b59b
...
...
@@ -26,7 +26,16 @@ os_thread_get_curr_id(void)
#ifdef __WIN__
return
(
GetCurrentThreadId
());
#else
return
((
os_thread_id_t
)
pthread_self
());
pthread_t
pthr
;
pthr
=
pthread_self
();
/* TODO: in the future we have to change os_thread_id
to pthread_t; the following cast may work in a wrong way on some
systems if pthread_t is a struct; this is just a quick fix
for HP-UX to eliminate a compiler warning */
return
(
*
(
os_thread_id_t
*
)((
void
*
)
(
&
pthr
)));
#endif
}
...
...
@@ -65,9 +74,14 @@ os_thread_create(
#else
int
ret
;
os_thread_t
pthread
;
pthread_attr_t
attr
;
pthread_attr_init
(
&
attr
);
ret
=
pthread_create
(
&
pthread
,
NULL
,
start_f
,
arg
);
pthread_attr_destroy
(
&
attr
);
return
(
pthread
);
#endif
}
...
...
innobase/srv/srv0srv.c
View file @
0a04b59b
...
...
@@ -899,8 +899,8 @@ void
srv_create_utility_threads
(
void
)
/*============================*/
{
os_thread_t
thread
;
os_thread_id_t
thr_id
;
/*
os_thread_t thread;
os_thread_id_t thr_id; */
ulint
i
;
mutex_enter
(
&
kernel_mutex
);
...
...
@@ -911,9 +911,9 @@ srv_create_utility_threads(void)
mutex_exit
(
&
kernel_mutex
);
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);
...
...
@@ -978,15 +978,15 @@ void
srv_create_com_threads
(
void
)
/*========================*/
{
os_thread_t
thread
;
os_thread_id_t
thr_id
;
/*
os_thread_t thread;
os_thread_id_t thr_id;
*/
ulint
i
;
srv_n_threads
[
SRV_COM
]
=
srv_n_com_threads
;
for
(
i
=
0
;
i
<
srv_n_com_threads
;
i
++
)
{
thread
=
os_thread_create
(
srv_com_thread
,
NULL
,
&
thr_id
);
ut_a
(
thread
);
/* thread = os_thread_create(srv_com_thread, NULL, &thr_id); */
/* ut_a(thread); */
}
}
...
...
@@ -1042,16 +1042,16 @@ void
srv_create_worker_threads
(
void
)
/*===========================*/
{
os_thread_t
thread
;
os_thread_id_t
thr_id
;
/*
os_thread_t thread;
os_thread_id_t thr_id;
*/
ulint
i
;
srv_n_threads
[
SRV_WORKER
]
=
srv_n_worker_threads
;
srv_n_threads_active
[
SRV_WORKER
]
=
srv_n_worker_threads
;
for
(
i
=
0
;
i
<
srv_n_worker_threads
;
i
++
)
{
thread
=
os_thread_create
(
srv_worker_thread
,
NULL
,
&
thr_id
);
ut_a
(
thread
);
/* thread = os_thread_create(srv_worker_thread, NULL, &thr_id); */
/* ut_a(thread); */
}
}
...
...
innobase/srv/srv0start.c
View file @
0a04b59b
...
...
@@ -683,8 +683,8 @@ innobase_start_or_create_for_mysql(void)
}
if
(
srv_measure_contention
)
{
os_thread_create
(
&
test_measure_cont
,
NULL
,
thread_ids
+
SRV_MAX_N_IO_THREADS
);
/*
os_thread_create(&test_measure_cont, NULL, thread_ids +
SRV_MAX_N_IO_THREADS); */
}
/* Create the master thread which monitors the database
...
...
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