1999-09-02
1999-09-02 18:39:02 by Per Hedbor <ph@opera.com>
-
7277a14757386a4a8aefe12ad921e692a93cc910
(9 lines)
(+4/-5)
[
Show
| Annotate
]
Branch: 5.2
Set handle to threaded_handle immediately when running with threads
Rev: server/base_server/roxen.pike:1.320
1:
/*
- * $Id: roxen.pike,v 1.319 1999/09/02 18:32:16 per Exp $
+ * $Id: roxen.pike,v 1.320 1999/09/02 18:39:02 per Exp $
*
* The Roxen Challenger main program.
*
7:
*/
// ABS and suicide systems contributed freely by Francesco Chemolli
- constant cvs_version="$Id: roxen.pike,v 1.319 1999/09/02 18:32:16 per Exp $";
+ constant cvs_version="$Id: roxen.pike,v 1.320 1999/09/02 18:39:02 per Exp $";
object backend_thread;
object argcache;
539: Inside #if undefined(THREADS)
function handle = unthreaded_handle;
#else
- function handle;
+ function handle = threaded_handle;
#endif
/*
616: Inside #if defined(THREADS)
for(; number_of_threads < QUERY(numthreads); number_of_threads++)
do_thread_create( "Handle thread ["+number_of_threads+"]",
handler_thread, number_of_threads );
- if(number_of_threads > 0)
- handle = threaded_handle;
+
}
void stop_handler_threads()