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
99585c9b
Commit
99585c9b
authored
Apr 21, 2006
by
osku
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove srv_sys->operational since it is unused.
parent
5f001454
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
8 deletions
+0
-8
include/srv0srv.h
include/srv0srv.h
+0
-3
srv/srv0srv.c
srv/srv0srv.c
+0
-5
No files found.
include/srv0srv.h
View file @
99585c9b
...
@@ -546,9 +546,6 @@ struct export_var_struct{
...
@@ -546,9 +546,6 @@ struct export_var_struct{
/* The server system struct */
/* The server system struct */
struct
srv_sys_struct
{
struct
srv_sys_struct
{
os_event_t
operational
;
/* created threads must wait for the
server to become operational by
waiting for this event */
srv_table_t
*
threads
;
/* server thread table */
srv_table_t
*
threads
;
/* server thread table */
UT_LIST_BASE_NODE_T
(
que_thr_t
)
UT_LIST_BASE_NODE_T
(
que_thr_t
)
tasks
;
/* task queue */
tasks
;
/* task queue */
...
...
srv/srv0srv.c
View file @
99585c9b
...
@@ -887,10 +887,6 @@ srv_init(void)
...
@@ -887,10 +887,6 @@ srv_init(void)
srv_meter_foreground
[
i
]
=
250
;
srv_meter_foreground
[
i
]
=
250
;
}
}
srv_sys
->
operational
=
os_event_create
(
NULL
);
ut_a
(
srv_sys
->
operational
);
UT_LIST_INIT
(
srv_sys
->
tasks
);
UT_LIST_INIT
(
srv_sys
->
tasks
);
/* create dummy table and index for old-style infimum and supremum */
/* create dummy table and index for old-style infimum and supremum */
...
@@ -2188,7 +2184,6 @@ srv_master_thread(
...
@@ -2188,7 +2184,6 @@ srv_master_thread(
mutex_exit
(
&
kernel_mutex
);
mutex_exit
(
&
kernel_mutex
);
os_event_set
(
srv_sys
->
operational
);
loop:
loop:
/*****************************************************************/
/*****************************************************************/
/* ---- When there is database activity by users, we cycle in this
/* ---- When there is database activity by users, we cycle in this
...
...
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