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
e7f31ffe
Commit
e7f31ffe
authored
Feb 28, 2004
by
serg@serg.mylan
Browse files
Options
Browse Files
Download
Plain Diff
Merge bk-internal:/home/bk/mysql-4.1/
into serg.mylan:/usr/home/serg/Abk/mysql-4.1
parents
24143abe
4d374c7c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
sql/mysqld.cc
sql/mysqld.cc
+2
-2
No files found.
sql/mysqld.cc
View file @
e7f31ffe
...
...
@@ -2951,8 +2951,6 @@ static void create_new_thread(THD *thd)
DBUG_VOID_RETURN
;
}
pthread_mutex_lock
(
&
LOCK_thread_count
);
if
(
thread_count
-
delayed_insert_threads
>
max_used_connections
)
max_used_connections
=
thread_count
-
delayed_insert_threads
;
thd
->
thread_id
=
thread_id
++
;
thd
->
real_id
=
pthread_self
();
// Keep purify happy
...
...
@@ -2981,6 +2979,8 @@ static void create_new_thread(THD *thd)
thread_count
++
;
thread_created
++
;
threads
.
append
(
thd
);
if
(
thread_count
-
delayed_insert_threads
>
max_used_connections
)
max_used_connections
=
thread_count
-
delayed_insert_threads
;
DBUG_PRINT
(
"info"
,((
"creating thread %d"
),
thd
->
thread_id
));
thd
->
connect_time
=
time
(
NULL
);
if
((
error
=
pthread_create
(
&
thd
->
real_id
,
&
connection_attrib
,
...
...
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