Return-Path: Delivered-To: apmail-httpd-dev-archive@www.apache.org Received: (qmail 5091 invoked from network); 10 Apr 2004 00:01:16 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (208.185.179.12) by minotaur-2.apache.org with SMTP; 10 Apr 2004 00:01:16 -0000 Received: (qmail 94123 invoked by uid 500); 10 Apr 2004 00:00:55 -0000 Delivered-To: apmail-httpd-dev-archive@httpd.apache.org Received: (qmail 93890 invoked by uid 500); 10 Apr 2004 00:00:54 -0000 Mailing-List: contact dev-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: dev@httpd.apache.org list-help: list-unsubscribe: list-post: Delivered-To: mailing list dev@httpd.apache.org Received: (qmail 93875 invoked from network); 10 Apr 2004 00:00:54 -0000 Received: from unknown (HELO zcamail03.zca.compaq.com) (161.114.32.103) by daedalus.apache.org with SMTP; 10 Apr 2004 00:00:54 -0000 Received: from cacexg12.americas.cpqcorp.net (cacexg12.americas.cpqcorp.net [16.92.1.46]) by zcamail03.zca.compaq.com (Postfix) with ESMTP id 12A2CAE92 for ; Fri, 9 Apr 2004 17:01:02 -0700 (PDT) Received: from cacexc03.americas.cpqcorp.net ([16.92.1.27]) by cacexg12.americas.cpqcorp.net with Microsoft SMTPSVC(6.0.3790.0); Fri, 9 Apr 2004 17:01:01 -0700 X-MimeOLE: Produced By Microsoft Exchange V6.5.6944.0 Content-class: urn:content-classes:message MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Subject: mod_cgi and apr_setup_signal_thread Date: Fri, 9 Apr 2004 17:01:01 -0700 Message-ID: <16A24B6050584143978000646801E93557C052@cacexc03.americas.cpqcorp.net> X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: mod_cgi and apr_setup_signal_thread Thread-Index: AcQejui/v0GRIW3WTmWYoBsbJu/ocA== From: "Mathihalli, Madhusudan" To: X-OriginalArrivalTime: 10 Apr 2004 00:01:01.0870 (UTC) FILETIME=[E9219CE0:01C41E8E] X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N Hello, I recently came across a very simple cgi script that does a "ping". The = script hangs when mod_cgi is used but works correctly with mod_cgid ! Guess whatz the reason: the delivery of SIGALRM is disabled and 'ping' = happens to use SIGALRM ! Question: Can we enable SIGALRM without breaking any other functionality = ? -Madhu Sample test script: ------------------- #!/bin/sh echo "Content-type: text/html\n\n " echo "" /usr/sbin/ping -v isuvw1.cup.hp.com -n 10 echo ""