Attempt not doing any sigaction stuff on win32
[catagits/FCGI-ProcManager.git] / lib / FCGI / ProcManager.pm
CommitLineData
0baf5fac 1package FCGI::ProcManager;
2
3# Copyright (c) 2000, FundsXpress Financial Network, Inc.
4# This library is free software released under the GNU Lesser General
5# Public License, Version 2.1. Please read the important licensing and
6# disclaimer information included below.
7
50f238cd 8# $Id: ProcManager.pm,v 1.23 2001/04/23 16:10:11 muaddie Exp $
0baf5fac 9
10use strict;
4ceac1a1 11use Exporter;
50f238cd 12use POSIX qw(:signal_h);
4ceac1a1 13
50f238cd 14use vars qw($VERSION @ISA @EXPORT_OK %EXPORT_TAGS $Q $SIG_CODEREF);
0baf5fac 15BEGIN {
ad36b2a1 16 $VERSION = '0.25';
4ceac1a1 17 @ISA = qw(Exporter);
c2bbadb3 18 @EXPORT_OK = qw(pm_manage pm_die pm_wait
4b99386a 19 pm_write_pid_file pm_remove_pid_file
20 pm_pre_dispatch pm_post_dispatch
21 pm_change_process_name pm_received_signal pm_parameter
22 pm_warn pm_notify pm_abort pm_exit
23 $SIG_CODEREF);
4ceac1a1 24 $EXPORT_TAGS{all} = \@EXPORT_OK;
25 $FCGI::ProcManager::Default = 'FCGI::ProcManager';
0baf5fac 26}
27
28=head1 NAME
29
30 FCGI::ProcManager - functions for managing FastCGI applications.
31
32=head1 SYNOPSIS
33
518709ed 34 # In Object-oriented style.
0baf5fac 35 use CGI::Fast;
36 use FCGI::ProcManager;
c2bbadb3 37 my $proc_manager = FCGI::ProcManager->new({
4b99386a 38 n_processes => 10
c2bbadb3 39 });
518709ed 40 $proc_manager->pm_manage();
0baf5fac 41 while (my $cgi = CGI::Fast->new()) {
518709ed 42 $proc_manager->pm_pre_dispatch();
43 # ... handle the request here ...
44 $proc_manager->pm_post_dispatch();
45 }
46
47 # This style is also supported:
48 use CGI::Fast;
6e8b04f7 49 use FCGI::ProcManager qw(pm_manage pm_pre_dispatch
4b99386a 50 pm_post_dispatch);
518709ed 51 pm_manage( n_processes => 10 );
52 while (my $cgi = CGI::Fast->new()) {
53 pm_pre_dispatch();
0baf5fac 54 #...
518709ed 55 pm_post_dispatch();
56 }
0baf5fac 57
58=head1 DESCRIPTION
59
518709ed 60FCGI::ProcManager is used to serve as a FastCGI process manager. By
61re-implementing it in perl, developers can more finely tune performance in
62their web applications, and can take advantage of copy-on-write semantics
63prevalent in UNIX kernel process management. The process manager should
64be invoked before the caller''s request loop
65
66The primary routine, C<pm_manage>, enters a loop in which it maintains a
67number of FastCGI servers (via fork(2)), and which reaps those servers
68when they die (via wait(2)).
69
70C<pm_manage> provides too hooks:
71
72 C<managing_init> - called just before the manager enters the manager loop.
73 C<handling_init> - called just before a server is returns from C<pm_manage>
74
75It is necessary for the caller, when implementing its request loop, to
76insert a call to C<pm_pre_dispatch> at the top of the loop, and then
777C<pm_post_dispatch> at the end of the loop.
78
50f238cd 79=head2 Signal Handling
80
81FCGI::ProcManager attempts to do the right thing for proper shutdowns now.
82
83When it receives a SIGHUP, it sends a SIGTERM to each of its children, and
b48455f1 84then resumes its normal operations.
50f238cd 85
86When it receives a SIGTERM, it sends a SIGTERM to each of its children, sets
87an alarm(3) "die timeout" handler, and waits for each of its children to
88die. If all children die before this timeout, process manager exits with
89return status 0. If all children do not die by the time the "die timeout"
90occurs, the process manager sends a SIGKILL to each of the remaining
91children, and exists with return status 1.
92
93In order to get FastCGI servers to exit upon receiving a signal, it is
b48455f1 94necessary to use its FAIL_ACCEPT_ON_INTR. See L<FCGI>'s description of
95FAIL_ACCEPT_ON_INTR. Unfortunately, if you want/need to use L<CGI::Fast>, it
96is currently necessary to run the latest (at the time of writing) development
97version of FCGI.pm. (>= 0.71_02)
50f238cd 98
99Otherwise, if you don't, there is a loop around accept(2) which prevents
100os_unix.c OS_Accept() from returning the necessary error when FastCGI
101servers blocking on accept(2) receive the SIGTERM or SIGHUP.
102
103FCGI::ProcManager uses POSIX::sigaction() to override the default SA_RESTART
104policy used for perl's %SIG behavior. Specifically, the process manager
105never uses SA_RESTART, while the child FastCGI servers turn off SA_RESTART
85f39372 106around the accept(2) loop, but reinstate it otherwise.
50f238cd 107
108The desired (and implemented) effect is to give a request as big a chance as
109possible to succeed and to delay their exits until after their request,
110while allowing the FastCGI servers waiting for new requests to die right
b48455f1 111away.
0baf5fac 112
113=head1 METHODS
114
115=head2 new
116
c2bbadb3 117 class or instance
118 (ProcManager) new([hash parameters])
119
120Constructs a new process manager. Takes an option has of initial parameter
121values, and assigns these to the constructed object HASH, overriding any
122default values. The default parameter values currently are:
123
124 role => manager
125 start_delay => 0
126 die_timeout => 60
2ae890a5 127 pm_title => 'perl-fcgi-pm'
c2bbadb3 128
0baf5fac 129=cut
130
131sub new {
132 my ($proto,$init) = @_;
50f238cd 133 $init ||= {};
0baf5fac 134
518709ed 135 my $this = {
4b99386a 136 role => "manager",
137 start_delay => 0,
138 die_timeout => 60,
2ae890a5 139 pm_title => 'perl-fcgi-pm',
4b99386a 140 %$init
141 };
4ceac1a1 142 bless $this, ref($proto)||$proto;
0baf5fac 143
144 $this->{PIDS} = {};
145
50f238cd 146 # initialize signal constructions.
51a6b0b8 147 unless ($this->no_signals() or $^O eq 'Win32') {
50f238cd 148 $this->{sigaction_no_sa_restart} =
4b99386a 149 POSIX::SigAction->new('FCGI::ProcManager::sig_sub');
50f238cd 150 $this->{sigaction_sa_restart} =
4b99386a 151 POSIX::SigAction->new('FCGI::ProcManager::sig_sub',undef,POSIX::SA_RESTART);
50f238cd 152 }
153
0baf5fac 154 return $this;
155}
156
51a6b0b8 157sub _set_signal_handler {
158 my ($this, $signal, $restart);
159
160 if ($^O eq 'Win32') {
161 $SIG{$signal} = 'FCGI::ProcManager::sig_sub';
162 } else {
163 no strict 'refs';
164 sigaction(&{"POSIX::SIG$signal"}(), $restart ? $this->{sigaction_sa_restart} : $this->{sigaction_no_sa_restart})
165 or $this->pm_warn("sigaction: SIG$signal: $!");
166 }
167}
168
518709ed 169=head1 Manager methods
4ceac1a1 170
171=head2 pm_manage
0baf5fac 172
c2bbadb3 173 instance or export
174 (int) pm_manage([hash parameters])
0baf5fac 175
176DESCRIPTION:
177
c2bbadb3 178When this is called by a FastCGI script to manage application servers. It
179defines a sequence of instructions for a process to enter this method and
180begin forking off and managing those handlers, and it defines a sequence of
181instructions to intialize those handlers.
182
183If n_processes < 1, the managing section is subverted, and only the
184handling sequence is executed.
185
186Either returns the return value of pm_die() and/or pm_abort() (which will
187not ever return in general), or returns 1 to the calling script to begin
188handling requests.
0baf5fac 189
190=cut
191
4ceac1a1 192sub pm_manage {
518709ed 193 my ($this,%values) = self_or_default(@_);
194 map { $this->pm_parameter($_,$values{$_}) } keys %values;
0baf5fac 195
f969c066 196 local $SIG{CHLD}; # Replace the SIGCHLD default handler in case
197 # somebody shit on it whilst loading code.
198
518709ed 199 # skip to handling now if we won't be managing any processes.
50f238cd 200 $this->n_processes() or return;
0baf5fac 201
518709ed 202 # call the (possibly overloaded) management initialization hook.
203 $this->role("manager");
c146b63d 204 $this->managing_init();
518709ed 205 $this->pm_notify("initialized");
0baf5fac 206
518709ed 207 my $manager_pid = $$;
0baf5fac 208
518709ed 209 MANAGING_LOOP: while (1) {
210
518709ed 211 $this->n_processes() > 0 or
212 return $this->pm_die();
0baf5fac 213
518709ed 214 # while we have fewer servers than we want.
215 PIDS: while (keys(%{$this->{PIDS}}) < $this->n_processes()) {
216
217 if (my $pid = fork()) {
4b99386a 218 # the manager remembers the server.
219 $this->{PIDS}->{$pid} = { pid=>$pid };
518709ed 220 $this->pm_notify("server (pid $pid) started");
0baf5fac 221
222 } elsif (! defined $pid) {
4b99386a 223 return $this->pm_abort("fork: $!");
0baf5fac 224
225 } else {
4b99386a 226 $this->{MANAGER_PID} = $manager_pid;
227 # the server exits the managing loop.
228 last MANAGING_LOOP;
0baf5fac 229 }
0baf5fac 230
69817330 231 for (my $s = $this->start_delay(); $s > 0; $s -= sleep $s) {};
518709ed 232 }
c146b63d 233
518709ed 234 # this should block until the next server dies.
c2bbadb3 235 $this->pm_wait();
0baf5fac 236
237 }# while 1
238
518709ed 239HANDLING:
0baf5fac 240
c2bbadb3 241 # forget any children we had been collecting.
242 delete $this->{PIDS};
243
518709ed 244 # call the (possibly overloaded) handling init hook
245 $this->role("server");
c146b63d 246 $this->handling_init();
518709ed 247 $this->pm_notify("initialized");
0baf5fac 248
518709ed 249 # server returns
0baf5fac 250 return 1;
251}
252
c146b63d 253=head2 managing_init
0baf5fac 254
c2bbadb3 255 instance
256 () managing_init()
257
258DESCRIPTION:
259
260Overrideable method which initializes a process manager. In order to
261handle signals, manage the PID file, and change the process name properly,
262any method which overrides this should call SUPER::managing_init().
263
0baf5fac 264=cut
265
c146b63d 266sub managing_init {
c2bbadb3 267 my ($this) = @_;
0baf5fac 268
518709ed 269 # begin to handle signals.
50f238cd 270 # We do NOT want SA_RESTART in the process manager.
271 # -- we want start the shutdown sequence immediately upon SIGTERM.
272 unless ($this->no_signals()) {
51a6b0b8 273 $this->_set_signal_handler('TERM', 0);
274 $this->_set_signal_handler('HUP', 0);
50f238cd 275 $SIG_CODEREF = sub { $this->sig_manager(@_) };
276 }
0baf5fac 277
518709ed 278 # change the name of this process as it appears in ps(1) output.
2ae890a5 279 $this->pm_change_process_name($this->pm_parameter('pm_title'));
0baf5fac 280
518709ed 281 $this->pm_write_pid_file();
0baf5fac 282}
283
518709ed 284=head2 pm_die
0baf5fac 285
c2bbadb3 286 instance or export
287 () pm_die(string msg[, int exit_status])
288
289DESCRIPTION:
290
291This method is called when a process manager receives a notification to
292shut itself down. pm_die() attempts to shutdown the process manager
293gently, sending a SIGTERM to each managed process, waiting die_timeout()
294seconds to reap each process, and then exit gracefully once all children
295are reaped, or to abort if all children are not reaped.
296
0baf5fac 297=cut
298
518709ed 299sub pm_die {
300 my ($this,$msg,$n) = self_or_default(@_);
301
302 # stop handling signals.
50f238cd 303 undef $SIG_CODEREF;
518709ed 304 $SIG{HUP} = 'DEFAULT';
305 $SIG{TERM} = 'DEFAULT';
306
307 $this->pm_remove_pid_file();
308
309 # prepare to die no matter what.
310 if (defined $this->die_timeout()) {
50f238cd 311 $SIG{ALRM} = sub { $this->pm_abort("wait timeout") };
518709ed 312 alarm $this->die_timeout();
313 }
314
315 # send a TERM to each of the servers.
50f238cd 316 if (my @pids = keys %{$this->{PIDS}}) {
317 $this->pm_notify("sending TERM to PIDs, @pids");
318 kill "TERM", @pids;
319 }
518709ed 320
321 # wait for the servers to die.
322 while (%{$this->{PIDS}}) {
c2bbadb3 323 $this->pm_wait();
518709ed 324 }
325
326 # die already.
327 $this->pm_exit("dying: ".$msg,$n);
0baf5fac 328}
329
c2bbadb3 330=head2 pm_wait
331
332 instance or export
333 (int pid) pm_wait()
334
335DESCRIPTION:
336
337This calls wait() which suspends execution until a child has exited.
338If the process ID returned by wait corresponds to a managed process,
339pm_notify() is called with the exit status of that process.
340pm_wait() returns with the return value of wait().
0baf5fac 341
342=cut
343
c2bbadb3 344sub pm_wait {
4ceac1a1 345 my ($this) = self_or_default(@_);
518709ed 346
347 # wait for the next server to die.
5ef2d8bb 348 return if ((my $pid = wait()) < 0);
518709ed 349
350 # notify when one of our servers have died.
351 delete $this->{PIDS}->{$pid} and
352 $this->pm_notify("server (pid $pid) exited with status $?");
c2bbadb3 353
354 return $pid;
0baf5fac 355}
356
c146b63d 357=head2 pm_write_pid_file
0baf5fac 358
c2bbadb3 359 instance or export
360 () pm_write_pid_file([string filename])
361
362DESCRIPTION:
363
364Writes current process ID to optionally specified file. If no filename is
365specified, it uses the value of the C<pid_fname> parameter.
366
0baf5fac 367=cut
368
4ceac1a1 369sub pm_write_pid_file {
370 my ($this,$fname) = self_or_default(@_);
0baf5fac 371 $fname ||= $this->pid_fname() or return;
56239560 372 my $PIDFILE;
63976743 373 if (!open $PIDFILE, ">$fname") {
518709ed 374 $this->pm_warn("open: $fname: $!");
0baf5fac 375 return;
376 }
63976743 377 print $PIDFILE "$$\n" or die "Could not print PID: $!";
8fc1fb48 378 close $PIDFILE or die "Could not close PID file: $!";
0baf5fac 379}
380
c146b63d 381=head2 pm_remove_pid_file
0baf5fac 382
c2bbadb3 383 instance or export
384 () pm_remove_pid_file()
385
386DESCRIPTION:
387
388Removes optionally specified file. If no filename is specified, it uses
389the value of the C<pid_fname> parameter.
390
0baf5fac 391=cut
392
4ceac1a1 393sub pm_remove_pid_file {
394 my ($this,$fname) = self_or_default(@_);
0baf5fac 395 $fname ||= $this->pid_fname() or return;
518709ed 396 my $ret = unlink($fname) or $this->pm_warn("unlink: $fname: $!");
0baf5fac 397 return $ret;
398}
399
50f238cd 400=head2 sig_sub
401
402 instance
403 () sig_sub(string name)
404
405DESCRIPTION:
406
407The name of this method is passed to POSIX::sigaction(), and handles signals
408for the process manager. If $SIG_CODEREF is set, then the input arguments
409to this are passed to a call to that.
410
411=cut
412
413sub sig_sub {
414 $SIG_CODEREF->(@_) if ref $SIG_CODEREF;
415}
416
518709ed 417=head2 sig_manager
0baf5fac 418
c2bbadb3 419 instance
420 () sig_manager(string name)
421
422DESCRIPTION:
423
424Handles signals of the process manager. Takes as input the name of signal
425being handled.
426
0baf5fac 427=cut
428
518709ed 429sub sig_manager {
430 my ($this,$name) = @_;
50f238cd 431 if ($name eq "TERM") {
c2bbadb3 432 $this->pm_notify("received signal $name");
433 $this->pm_die("safe exit from signal $name");
50f238cd 434 } elsif ($name eq "HUP") {
435 # send a TERM to each of the servers, and pretend like nothing happened..
436 if (my @pids = keys %{$this->{PIDS}}) {
437 $this->pm_notify("sending TERM to PIDs, @pids");
438 kill "TERM", @pids;
439 }
518709ed 440 } else {
441 $this->pm_notify("ignoring signal $name");
442 }
0baf5fac 443}
444
518709ed 445=head1 Handler methods
0baf5fac 446
518709ed 447=head2 handling_init
0baf5fac 448
c2bbadb3 449 instance or export
450 () handling_init()
451
452DESCRIPTION:
453
0baf5fac 454=cut
455
518709ed 456sub handling_init {
c2bbadb3 457 my ($this) = @_;
0baf5fac 458
518709ed 459 # begin to handle signals.
50f238cd 460 # We'll want accept(2) to return -1(EINTR) on caught signal..
461 unless ($this->no_signals()) {
51a6b0b8 462 $this->_set_signal_handler('TERM', 0);
463 $this->_set_signal_handler('HUP', 0);
50f238cd 464 $SIG_CODEREF = sub { $this->sig_handler(@_) };
465 }
0baf5fac 466
518709ed 467 # change the name of this process as it appears in ps(1) output.
468 $this->pm_change_process_name("perl-fcgi");
7edfbf27 469
470 # Re-srand in case someone called rand before the fork, so that
471 # children get different random numbers.
472 srand;
0baf5fac 473}
474
518709ed 475=head2 pm_pre_dispatch
0baf5fac 476
c2bbadb3 477 instance or export
478 () pm_pre_dispatch()
479
480DESCRIPTION:
481
0baf5fac 482=cut
483
518709ed 484sub pm_pre_dispatch {
4ceac1a1 485 my ($this) = self_or_default(@_);
50f238cd 486
487 # Now, we want the request to continue unhindered..
488 unless ($this->no_signals()) {
51a6b0b8 489 $this->_set_signal_handler('TERM', 1);
490 $this->_set_signal_handler('HUP', 1);
50f238cd 491 }
0baf5fac 492}
493
518709ed 494=head2 pm_post_dispatch
0baf5fac 495
c2bbadb3 496 instance or export
497 () pm_post_dispatch()
498
499DESCRIPTION:
500
0baf5fac 501=cut
502
518709ed 503sub pm_post_dispatch {
4ceac1a1 504 my ($this) = self_or_default(@_);
518709ed 505 if ($this->pm_received_signal("TERM")) {
506 $this->pm_exit("safe exit after SIGTERM");
507 }
508 if ($this->pm_received_signal("HUP")) {
509 $this->pm_exit("safe exit after SIGHUP");
510 }
c2bbadb3 511 if ($this->{MANAGER_PID} and getppid() != $this->{MANAGER_PID}) {
518709ed 512 $this->pm_exit("safe exit: manager has died");
513 }
50f238cd 514 # We'll want accept(2) to return -1(EINTR) on caught signal..
515 unless ($this->no_signals()) {
51a6b0b8 516 $this->_set_signal_handler('TERM', 0);
517 $this->_set_signal_handler('HUP', 0);
50f238cd 518 }
0baf5fac 519}
520
518709ed 521=head2 sig_handler
0baf5fac 522
c2bbadb3 523 instance or export
524 () sig_handler()
525
526DESCRIPTION:
527
0baf5fac 528=cut
529
518709ed 530sub sig_handler {
c146b63d 531 my ($this,$name) = @_;
518709ed 532 $this->pm_received_signal($name,1);
533}
534
535=head1 Common methods and routines
536
537=head2 self_or_default
538
539 private global
540 (ProcManager, @args) self_or_default([ ProcManager, ] @args);
541
542DESCRIPTION:
543
544This is a helper subroutine to acquire or otherwise create a singleton
545default object if one is not passed in, e.g., a method call.
546
547=cut
548
549sub self_or_default {
550 return @_ if defined $_[0] and !ref $_[0] and $_[0] eq 'FCGI::ProcManager';
551 if (!defined $_[0] or (ref($_[0]) ne 'FCGI::ProcManager' and
4b99386a 552 !UNIVERSAL::isa($_[0],'FCGI::ProcManager'))) {
518709ed 553 $Q or $Q = $FCGI::ProcManager::Default->new;
554 unshift @_, $Q;
0baf5fac 555 }
518709ed 556 return wantarray ? @_ : $Q;
557}
558
559=head2 pm_change_process_name
560
c2bbadb3 561 instance or export
562 () pm_change_process_name()
563
564DESCRIPTION:
565
518709ed 566=cut
567
568sub pm_change_process_name {
569 my ($this,$name) = self_or_default(@_);
570 $0 = $name;
571}
572
573=head2 pm_received_signal
574
c2bbadb3 575 instance or export
576 () pm_received signal()
577
578DESCRIPTION:
579
518709ed 580=cut
581
582sub pm_received_signal {
583 my ($this,$sig,$received) = self_or_default(@_);
584 $sig or return $this->{SIG_RECEIVED};
585 $received and $this->{SIG_RECEIVED}->{$sig}++;
586 return $this->{SIG_RECEIVED}->{$sig};
587}
588
c2bbadb3 589=head1 parameters
590
518709ed 591=head2 pm_parameter
592
c2bbadb3 593 instance or export
594 () pm_parameter()
595
596DESCRIPTION:
597
518709ed 598=cut
599
600sub pm_parameter {
601 my ($this,$key,$value) = self_or_default(@_);
602 defined $value and $this->{$key} = $value;
603 return $this->{$key};
0baf5fac 604}
605
518709ed 606=head2 n_processes
607
608=head2 no_signals
609
610=head2 pid_fname
611
612=head2 die_timeout
613
614=head2 role
615
616=head2 start_delay
617
c2bbadb3 618DESCRIPTION:
619
518709ed 620=cut
621
622sub n_processes { shift->pm_parameter("n_processes", @_); }
623sub pid_fname { shift->pm_parameter("pid_fname", @_); }
624sub no_signals { shift->pm_parameter("no_signals", @_); }
625sub die_timeout { shift->pm_parameter("die_timeout", @_); }
626sub role { shift->pm_parameter("role", @_); }
627sub start_delay { shift->pm_parameter("start_delay", @_); }
628
c2bbadb3 629=head1 notification and death
630
c146b63d 631=head2 pm_warn
0baf5fac 632
c2bbadb3 633 instance or export
634 () pm_warn()
635
636DESCRIPTION:
637
0baf5fac 638=cut
639
4ceac1a1 640sub pm_warn {
641 my ($this,$msg) = self_or_default(@_);
518709ed 642 $this->pm_notify($msg);
643}
644
645=head2 pm_notify
646
c2bbadb3 647 instance or export
648 () pm_notify()
649
650DESCRIPTION:
651
518709ed 652=cut
653
654sub pm_notify {
655 my ($this,$msg) = self_or_default(@_);
656 $msg =~ s/\s*$/\n/;
657 print STDERR "FastCGI: ".$this->role()." (pid $$): ".$msg;
0baf5fac 658}
659
c2bbadb3 660=head2 pm_exit
661
662 instance or export
663 () pm_exit(string msg[, int exit_status])
664
665DESCRIPTION:
0baf5fac 666
667=cut
668
4ceac1a1 669sub pm_exit {
670 my ($this,$msg,$n) = self_or_default(@_);
0baf5fac 671 $n ||= 0;
c2bbadb3 672
673 # if we still have children at this point, something went wrong.
674 # SIGKILL them now.
675 kill "KILL", keys %{$this->{PIDS}} if $this->{PIDS};
676
4ceac1a1 677 $this->pm_warn($msg);
0baf5fac 678 $@ = $msg;
679 exit $n;
680}
681
c146b63d 682=head2 pm_abort
0baf5fac 683
c2bbadb3 684 instance or export
685 () pm_abort(string msg[, int exit_status])
686
687DESCRIPTION:
688
0baf5fac 689=cut
690
4ceac1a1 691sub pm_abort {
692 my ($this,$msg,$n) = self_or_default(@_);
0baf5fac 693 $n ||= 1;
4ceac1a1 694 $this->pm_exit($msg,1);
0baf5fac 695}
696
6971;
698__END__
699
700=head1 BUGS
701
702No known bugs, but this does not mean no bugs exist.
703
704=head1 SEE ALSO
705
706L<FCGI>.
707
9d643399 708=head1 MAINTAINER
709
710Gareth Kirwan <gbjk@thermeon.com>
711
712=head1 AUTHOR
713
714James E Jurach Jr.
715
0baf5fac 716=head1 COPYRIGHT
717
718 FCGI-ProcManager - A Perl FCGI Process Manager
719 Copyright (c) 2000, FundsXpress Financial Network, Inc.
720
721 This library is free software; you can redistribute it and/or
722 modify it under the terms of the GNU Lesser General Public
723 License as published by the Free Software Foundation; either
724 version 2 of the License, or (at your option) any later version.
725
726 BECAUSE THIS LIBRARY IS LICENSED FREE OF CHARGE, THIS LIBRARY IS
727 BEING PROVIDED "AS IS WITH ALL FAULTS," WITHOUT ANY WARRANTIES
728 OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING, WITHOUT
729 LIMITATION, ANY IMPLIED WARRANTIES OF TITLE, NONINFRINGEMENT,
730 MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, AND THE
731 ENTIRE RISK AS TO SATISFACTORY QUALITY, PERFORMANCE, ACCURACY,
732 AND EFFORT IS WITH THE YOU. See the GNU Lesser General Public
733 License for more details.
734
735 You should have received a copy of the GNU Lesser General Public
736 License along with this library; if not, write to the Free Software
737 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
738
739=cut