import FCGI-ProcManager 0.17 from CPAN
[catagits/FCGI-ProcManager.git] / ChangeLog
1 2001-04-23 18:12  James Jurach  <muaddib@erf.net>
2
3         * ProcManager.pm: SIGHUP handler now issues SIGTERM to children but
4         then proceeds normally. added documentation blurb about signal
5         handling. we now use POSIX::sigaction() to avoid SA_RESTART during
6         certain regions. added re-usable POSIX::SigAction members to toggle
7         SA_RESTART. added sig_sub() -- necessary to pass name to
8         POSIX::SigAction creation. 
9
10         * README: added small blurb to consult FCGI::ProcManager
11         documentation. 
12
13         * t/exporter.t:
14         * t/procmanager.t: fixed pm_manage() test.
15
16 2001-03-13 18:12  James Jurach  <muaddib@erf.net>
17
18         * ProcManager.pm: removed check for FCGI_ROLE.  now more
19         transparent when undesired.
20
21         * ProcManager.pm: detect when no FastCGI environment exists.
22
23         * ProcManager.pm: only warn and sleep -- do not abort on fork
24         failure.
25
26         * ProcManager.pm: now, we give notification to which processes we
27         send a TERM signal.
28
29 2001-02-09 10:16  James Jurach  <muaddib@erf.net>
30
31         * t/: exporter.t, procmanager.t: made it easier to manage
32         sample_request_loop() for testing.
33
34         * ProcManager.pm: modified some error messages.  added immediate
35         notify of manager signal.
36
37         * ProcManager.pm: added more documentation.  renamed
38         pm_reap_server() to pm_wait().  fixed problem when ! MANAGER_PID
39         that caused server to die immediately we now delete list of child
40         PIDs from each child.  added mechanism to pm_exit() to send a
41         SIGKILL to any remaining children.
42
43 2001-01-31 01:13  James Jurach  <muaddib@erf.net>
44
45         * README: more documentation
46
47         * ProcManager.pm: re-organized method layout.  separated manager
48         vs. server vs. common moved more intialization into managing_init()
49         and handling_init() created pm_die() to be called when manager
50         should die.  cleaned up error messages and notifications.
51
52         * t/: exporter.t, procmanager.t: revised test messages
53
54 2001-01-30 16:35  James Jurach  <muaddib@erf.net>
55
56         * t/: exporter.t, procmanager.t: removed call to pm_state()
57
58         * ProcManager.pm: removed sleep() call after testing
59         signal-during-fork-loop
60
61 2001-01-30 12:49  James Jurach  <muaddib@erf.net>
62
63         * ProcManager.pm: Cleaned up pm_manage().  removed signal
64         registration routines.  replaced by direct %SIG access.  there is
65         now a manager signal handler and a handler signal handler.  added
66         checks to die when getppid() changes.
67
68 2001-01-20 02:06  James Jurach  <muaddib@erf.net>
69
70         * MANIFEST: removed Changes from MANIFEST
71
72 2001-01-13 00:44  James Jurach  <muaddib@erf.net>
73
74         * t/procmanager.t: corrected various recent method name changes. 
75         removed calls to want_to_die().  added request loop hooks to
76         pm_pre_dispatch(), pm_post_dispatch().  renamed sample_handler() to
77         sample_request_loop().
78
79         * ProcManager.pm: renamed request loop hooks to pm_pre_dispatch(),
80         pm_post_dispatch().  when pm_manage() is called with
81         n_processes==0, return through goto.  renamed pre_manage_init() to
82         managing_init().  renamed post_manage_init() to handling_init(). 
83         added received_signal() to remember that a signal was received. 
84         signal handler simpler: now only notes signal and propagates
85         signal.
86
87         * t/exporter.t: this uses non-OO calling mode.
88
89         * MANIFEST: added t/exporter.t.
90
91         * Changes: ChangeLog is where per-file changes are listed.
92
93 2000-12-22 05:58  James Jurach  <muaddib@erf.net>
94
95         * ProcManager.pm: corrected logic error in self_or_default(). 
96         changed all occurances of write_pid_file() to pm_write_pid_file(). 
97         changed all occurances of remove_pid_file() to
98         pm_remove_pid_file().
99
100 2000-12-14 17:54  James Jurach  <muaddib@erf.net>
101
102         * ProcManager.pm: corrected state() -> pm_state() method call.
103
104 2000-12-10 17:25  James Jurach  <muaddib@erf.net>
105
106         * ProcManager.pm: corrected some method renaming issues.
107
108 2000-12-09 19:48  James Jurach  <muaddib@erf.net>
109
110         * t/procmanager.t: effected the changes to these subroutine names.
111
112         * ProcManager.pm: made this module OO/Exporter hybrid.  removed
113         treatment of $ENV{PROCMANAGER_PROCESSES} from constructor.  changed
114         several subroutine names.
115
116 2000-12-05 22:23  James Jurach  <muaddib@erf.net>
117
118         * ProcManager.pm: made SIGHUP's do what SIGTERM's do
119
120 2000-11-20  James Jurach  <muaddib@erf.net>
121
122         * Released first public version.