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
c849952b
Commit
c849952b
authored
Jun 13, 2024
by
Marko Mäkelä
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
MDEV-33840: Fix GCC -Wreorder
This fixes up the merge commit
829cb1a4
parent
fc9005ad
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
2 deletions
+1
-2
tpool/tpool_generic.cc
tpool/tpool_generic.cc
+1
-2
No files found.
tpool/tpool_generic.cc
View file @
c849952b
...
...
@@ -244,7 +244,7 @@ class thread_pool_generic : public thread_pool
unsigned
int
m_concurrency
;
/** True, if threadpool is being shutdown, false otherwise */
bool
m_in_shutdown
;
bool
m_in_shutdown
=
false
;
/** Maintenance timer state : true = active(ON),false = inactive(OFF)*/
enum
class
timer_state_t
...
...
@@ -813,7 +813,6 @@ thread_pool_generic::thread_pool_generic(int min_threads, int max_threads) :
m_wakeups
(),
m_spurious_wakeups
(),
m_timer_state
(
timer_state_t
::
ON
),
m_in_shutdown
(),
m_timestamp
(),
m_long_tasks_count
(),
m_waiting_task_count
(),
...
...
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