mirror of
https://github.com/moparisthebest/wget
synced 2024-07-03 16:38:41 -04:00
[svn] Made thread_hnd non-static.
This commit is contained in:
parent
15f7e83216
commit
9bd8e5c94e
@ -1,3 +1,7 @@
|
|||||||
|
2006-02-09 Hrvoje Niksic <hniksic@xemacs.org>
|
||||||
|
|
||||||
|
* mswindows.c (run_with_timeout): Made thread_hnd non-static.
|
||||||
|
|
||||||
2006-02-05 Hrvoje Niksic <hniksic@xemacs.org>
|
2006-02-05 Hrvoje Niksic <hniksic@xemacs.org>
|
||||||
|
|
||||||
* retr.c (sleep_between_retrievals): Sleep at a minimum of 1/2 of
|
* retr.c (sleep_between_retrievals): Sleep at a minimum of 1/2 of
|
||||||
|
@ -523,7 +523,7 @@ thread_helper (void *arg)
|
|||||||
bool
|
bool
|
||||||
run_with_timeout (double seconds, void (*fun) (void *), void *arg)
|
run_with_timeout (double seconds, void (*fun) (void *), void *arg)
|
||||||
{
|
{
|
||||||
static HANDLE thread_hnd = NULL;
|
HANDLE thread_hnd;
|
||||||
struct thread_data thread_arg;
|
struct thread_data thread_arg;
|
||||||
DWORD thread_id;
|
DWORD thread_id;
|
||||||
bool rc;
|
bool rc;
|
||||||
@ -537,9 +537,6 @@ run_with_timeout (double seconds, void (*fun) (void *), void *arg)
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Should never happen, but test for recursivety anyway. */
|
|
||||||
assert (thread_hnd == NULL);
|
|
||||||
|
|
||||||
thread_arg.fun = fun;
|
thread_arg.fun = fun;
|
||||||
thread_arg.arg = arg;
|
thread_arg.arg = arg;
|
||||||
thread_arg.ws_error = WSAGetLastError ();
|
thread_arg.ws_error = WSAGetLastError ();
|
||||||
|
Loading…
Reference in New Issue
Block a user