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
c55e9c5f
Commit
c55e9c5f
authored
Jun 09, 2007
by
holyfoot/hf@hfmain.(none)
Browse files
Options
Browse Files
Download
Plain Diff
Merge bk@192.168.21.1:mysql-5.0-opt
into mysql.com:/home/hf/work/28333/my50-28333
parents
241c49c6
96d07631
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
1 deletion
+11
-1
client/mysqltest.c
client/mysqltest.c
+11
-1
No files found.
client/mysqltest.c
View file @
c55e9c5f
...
@@ -496,6 +496,10 @@ void handle_error(struct st_command*,
...
@@ -496,6 +496,10 @@ void handle_error(struct st_command*,
void
handle_no_error
(
struct
st_command
*
);
void
handle_no_error
(
struct
st_command
*
);
#ifdef EMBEDDED_LIBRARY
#ifdef EMBEDDED_LIBRARY
/* attributes of the query thread */
pthread_attr_t
cn_thd_attrib
;
/*
/*
send_one_query executes query in separate thread what is
send_one_query executes query in separate thread what is
necessary in embedded library to run 'send' in proper way.
necessary in embedded library to run 'send' in proper way.
...
@@ -534,7 +538,7 @@ static int do_send_query(struct st_connection *cn, const char *q, int q_len,
...
@@ -534,7 +538,7 @@ static int do_send_query(struct st_connection *cn, const char *q, int q_len,
cn
->
cur_query
=
q
;
cn
->
cur_query
=
q
;
cn
->
cur_query_len
=
q_len
;
cn
->
cur_query_len
=
q_len
;
cn
->
query_done
=
0
;
cn
->
query_done
=
0
;
if
(
pthread_create
(
&
tid
,
NULL
,
send_one_query
,
(
void
*
)
cn
))
if
(
pthread_create
(
&
tid
,
&
cn_thd_attrib
,
send_one_query
,
(
void
*
)
cn
))
die
(
"Cannot start new thread for query"
);
die
(
"Cannot start new thread for query"
);
return
0
;
return
0
;
...
@@ -5999,6 +6003,12 @@ int main(int argc, char **argv)
...
@@ -5999,6 +6003,12 @@ int main(int argc, char **argv)
next_con
=
connections
+
1
;
next_con
=
connections
+
1
;
cur_con
=
connections
;
cur_con
=
connections
;
#ifdef EMBEDDED_LIBRARY
/* set appropriate stack for the 'query' threads */
(
void
)
pthread_attr_init
(
&
cn_thd_attrib
);
pthread_attr_setstacksize
(
&
cn_thd_attrib
,
DEFAULT_THREAD_STACK
);
#endif
/*EMBEDDED_LIBRARY*/
/* Init file stack */
/* Init file stack */
memset
(
file_stack
,
0
,
sizeof
(
file_stack
));
memset
(
file_stack
,
0
,
sizeof
(
file_stack
));
file_stack_end
=
file_stack_end
=
...
...
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