bjh         99/11/01 02:58:56

  Modified:    src/modules/mpm/spmt_os2 spmt_os2.c
  Log:
  OS/2: Bump up thread stack size. 64k just wasn't enough when doing
  sub-requests in mod_include.
  
  Revision  Changes    Path
  1.20      +1 -1      apache-2.0/src/modules/mpm/spmt_os2/spmt_os2.c
  
  Index: spmt_os2.c
  ===================================================================
  RCS file: /home/cvs/apache-2.0/src/modules/mpm/spmt_os2/spmt_os2.c,v
  retrieving revision 1.19
  retrieving revision 1.20
  diff -u -r1.19 -r1.20
  --- spmt_os2.c        1999/10/29 14:37:31     1.19
  +++ spmt_os2.c        1999/11/01 10:58:55     1.20
  @@ -1179,7 +1179,7 @@
   
       ap_update_child_status(slot, SERVER_STARTING, (request_rec *) NULL);
   
  -    if ((tid = _beginthread(child_main, NULL, 65536, (void *)slot)) == -1) {
  +    if ((tid = _beginthread(child_main, NULL,  256*1024, (void *)slot)) == 
-1) {
        ap_log_error(APLOG_MARK, APLOG_ERR|APLOG_NOERRNO, 0, s, "_beginthread: 
Unable to create new thread");
   
        /* _beginthread didn't succeed. Fix the scoreboard or else
  
  
  

Reply via email to