dgaudet     97/07/19 21:05:58

  Modified:    src       http_main.c
  Log:
  Dean whistles innocently as he fixes the ordering of the arguments to kill().
  
  Revision  Changes    Path
  1.182     +1 -1      apache/src/http_main.c
  
  Index: http_main.c
  ===================================================================
  RCS file: /export/home/cvs/apache/src/http_main.c,v
  retrieving revision 1.181
  retrieving revision 1.182
  diff -C3 -r1.181 -r1.182
  *** http_main.c       1997/07/19 20:16:12     1.181
  --- http_main.c       1997/07/20 04:05:56     1.182
  ***************
  *** 2465,2471 ****
         * shut down gracefully, in case it happened to pick up a request
         * while we were counting
         */
  !     kill (SIGUSR1, scoreboard_image->servers[to_kill].pid);
        } else if (idle_count < daemons_min_free) {
        if (free_slot == -1) {
            /* only report this condition once */
  --- 2465,2471 ----
         * shut down gracefully, in case it happened to pick up a request
         * while we were counting
         */
  !     kill (scoreboard_image->servers[to_kill].pid, SIGUSR1);
        } else if (idle_count < daemons_min_free) {
        if (free_slot == -1) {
            /* only report this condition once */
  
  
  

Reply via email to