[svn:qpsmtpd] r647 - trunk
[email protected] Tue, 27 Jun 2006 17:06:19 -0700 (PDT)
| Newsgroups | perl.cvs.qpsmtpd |
|---|---|
| Message-ID | <[email protected]> |
Author: msergeant
Date: Tue Jun 27 17:06:18 2006
New Revision: 647
Modified:
trunk/qpsmtpd
Log:
Cleanup now we have no fork server in this script (Brian Grossman)
Modified: trunk/qpsmtpd
==============================================================================
--- trunk/qpsmtpd (original)
+++ trunk/qpsmtpd Tue Jun 27 17:06:18 2006
@@ -58,9 +58,8 @@
-h, --help : this page
--use-poll : force use of poll() instead of epoll()/kqueue()
-NB: -f and -j are mutually exclusive. If -f flag is not used the server uses
-poll() style loops running inside J child processes. Set J to the number of
-CPUs you have at your disposal.
+NB: The server uses poll() style loops running inside J child processes. Set J
+to the number of CPUs you have at your disposal.
EOT
exit(0);
@@ -159,12 +158,6 @@
$SIG{CHLD} = \&sig_chld;
}
-sub HUNTSMAN {
- $SIG{CHLD} = 'DEFAULT';
- kill 'INT' => keys %childstatus;
- exit(0);
-}
-
sub run_as_server {
local $::MAXconn = $MAXCONN;
# establish SERVER socket, bind and listen.