/[Apache-SVN]/httpd/httpd/trunk/include/ap_mpm.h
ViewVC logotype

Log of /httpd/httpd/trunk/include/ap_mpm.h

Parent Directory Parent Directory | Revision Log Revision Log


Links to HEAD: (view) (annotate)
Sticky Revision:

Revision 830527 - (view) (annotate) - [select for diffs]
Modified Wed Oct 28 13:25:49 2009 UTC (4 weeks, 1 day ago) by poirier
File length: 8661 byte(s)
Diff to previous 762127 (colored)
Fix a lot of doxygen warnings.  Thanks to Brad Hards for the patch.
I added a few more fixes, and there are still more that might
need a doxygen expert.

PR: 48061
Submitted by: Brad Hards
Reviewed by: poirier

Revision 762127 - (view) (annotate) - [select for diffs]
Modified Sun Apr 5 17:54:22 2009 UTC (7 months, 3 weeks ago) by trawick
File length: 8667 byte(s)
Diff to previous 760864 (colored)
main() can use ap_run_mpm() directly, so axe the old ap_mpm_run() function

change the mpm hooks to return OK/DONE instead of 0/1

Revision 760864 - (view) (annotate) - [select for diffs]
Modified Wed Apr 1 11:53:50 2009 UTC (7 months, 3 weeks ago) by trawick
File length: 8775 byte(s)
Diff to previous 759413 (colored)
mpm-query hook: distinguish between DECLINED and APR_ENOTIMPL so that
. ap_mpm_query() can return APR_EGENERAL if called too early (for debugging a module)
. some hypothetical module which implements the mpm-query hook can bypass the MPM
  with APR_ENOTIMPL

Revision 759413 - (view) (annotate) - [select for diffs]
Modified Sat Mar 28 01:00:41 2009 UTC (8 months ago) by pquerna
File length: 8539 byte(s)
Diff to previous 759113 (colored)
If serf is available, compile in driving the serf event loop from inside the
Event MPM.

Add a new MPM Query to determine if an MPM supports this.

Revision 759113 - (view) (annotate) - [select for diffs]
Modified Fri Mar 27 12:15:12 2009 UTC (8 months ago) by trawick
File length: 8461 byte(s)
Diff to previous 757853 (colored)
fix typo in comment

Revision 757853 - (view) (annotate) - [select for diffs]
Modified Tue Mar 24 15:43:59 2009 UTC (8 months ago) by trawick
File length: 8461 byte(s)
Diff to previous 697357 (colored)
Introduce a new set of APIs to allow MPMs to be proper modules instead
of integral parts which share global variables, functions, and macros
with the rest of httpd.

Converted now:
  prefork, worker, event, simple, WinNT*

*WinNT hasn't been built or tested, and relies on a hack to include the
WinNT mpm.h to disable Unixy MPM support routines in mpm_common.c

Revision 697357 - (view) (annotate) - [select for diffs]
Modified Sat Sep 20 11:58:08 2008 UTC (14 months ago) by pquerna
File length: 8318 byte(s)
Diff to previous 645437 (colored)
Introduce Suspendable Requests to the Event MPM.

Using this basic framework, you can return SUSPENDED from an HTTP Handler,
and then register a callback that is invoked by the MPM at a later time.

This initial version only supports _timers_ as callbacks, but in the future I
would like to add things like wait for socket activity, on a socket specified by
the handler.

Once in a callback, It is then the responsibility of the callback fucntion 
to finish the HTTP Request handling, but this alows you to do cool things like 
a fully async proxy, COMET support, or even rate limiting.

To prove I'm not insane, I've inlcuded an example module, mod_dialup.

You can configure it like this:
<Location "/docs">
  ModemStandard "V.32"
</Location>

And for static files inside that path, you will be rate limited to V.32 speeds, 
aka 9.6 kilobits/second.

Does anyone besides Rüdiger read commit emails :-) ?

I know there are likely huge problems with this, but I would like to see how far
we can push the Event MPM, figure out what to do better, if there is anything, 
and then really dive into the 3.0 development before ApacheCon.

* server/mpm/experimental/event/fdqueue.h:
    (timer_event_t): New structure to hold timer events and callback functions.
    
* server/mpm/experimental/event/fdqueue.c
    (ap_queue_empty): Modify to also look at Timer Ring.

    (ap_queue_init): Initialize Timer Ring.

    (ap_queue_push_timer): New function, pushes a timer event into the queue.

    (ap_queue_pop_something): Renamed function, returns a timer event or
        a socket/pool for a worker thread to run.


* server/mpm/experimental/event/event.c
    (process_socket): If the connection is in SUSPENDED state, don't force it
        into linger mode yet, the callback will have to take care of that.

    (push_timer2worker): New shortcut function, pushes timer event into queue
        for a worker to run.

    (timer_free_ring): New global data structure to recycle memory used by 
        timer events.

    (timer_ring): New global data structure to hold active timer events.

    (g_timer_ring_mtx): Thread mutex to protect timer event data structures.

    (ap_mpm_register_timed_callback): New Function, registers a callback to be
        invoked by the MPM at a later time.

    (listener_thread): Calculate our wakeup time based on the upcoming Event 
        Queue, and after pollset_poll runs, push any Timers that have passed
        onto worker threads to run.
    
    (worker_thread): Call new queue pop method, and if the Timer Event is 
        non-null, invoke the callback.  Once the callback is done, push the
        structure onto the timer_free_ring, to be recycled.

    (child_main): Initialize new mutex and ring structures.


* server/config.c
    (ap_invoke_handler): Allow SUSPENDED aa valid return code from handlers.


* modules/http/http_core.c
    (ap_process_http_async_connection): Don't close the connection when in 
        SUSPENDED state.


* modules/http/http_request.c
    (ap_process_request_after_handler): New function, body pulled from the old,
        ap_process_async_request.  Split to let handlers invoke this so they 
        don't need to know all of the details of finishing a request.

    (ap_process_async_request): If the handler returns SUSPENDED, don't do
        anything but return.


* include/ap_mmn.h: Bump MMN.


* include/ap_mpm.h
    (ap_mpm_register_timed_callback): New function.


* include/httpd.h:
    (SUSPENDED): New return code for handlers.
    (request_rec::invoke_mtx): New mutex to protect callback invokcations
        from being run before the original handler finishes running.
    (conn_state_e): Add a suspended state.


* include/http_request.h
    (ap_process_request_after_handler): New function to make it easier for 
        handlers to finish the HTTP Request.


* modules/test/config.m4: Add mod_dialup to build.


* modules/test/mod_dialup.c: New rate limiting module, requires the Event MPM 
    to work.



Revision 645437 - (view) (annotate) - [select for diffs]
Modified Mon Apr 7 10:00:32 2008 UTC (19 months, 2 weeks ago) by pquerna
File length: 8006 byte(s)
Diff to previous 553013 (colored)
Remove ap_graceful_stop_signalled from all MPMs.

Revision 553013 - (view) (annotate) - [select for diffs]
Modified Tue Jul 3 23:02:32 2007 UTC (2 years, 4 months ago) by sctemme
File length: 8272 byte(s)
Diff to previous 535169 (colored)
Use correct Doxygen keywords for functions and variables.  TODO: figure out whether those keywords are actually necessary.  HTML-ify some documentation comments for benefit of Doxygen.

Revision 535169 - (view) (annotate) - [select for diffs]
Modified Fri May 4 11:11:26 2007 UTC (2 years, 6 months ago) by rpluem
File length: 8287 byte(s)
Diff to previous 420983 (colored)
* Add extern "C" linkage to several headers to make it easier to use
  them in C++ code.

PR: 42286
Submitted by: Davi Arnaut <davi haxent.com.br>
Reviewed by: rpluem

Revision 420983 - (view) (annotate) - [select for diffs]
Modified Tue Jul 11 20:33:53 2006 UTC (3 years, 4 months ago) by fielding
File length: 8218 byte(s)
Diff to previous 395228 (colored)
update license header text

Revision 395228 - (view) (annotate) - [select for diffs]
Modified Wed Apr 19 12:11:27 2006 UTC (3 years, 7 months ago) by colm
File length: 8071 byte(s)
Diff to previous 263931 (colored)
Update the copyright year in all .c, .h and .xml files

Revision 263931 - (view) (annotate) - [select for diffs]
Modified Sun Aug 28 23:03:59 2005 UTC (4 years, 3 months ago) by ianh
File length: 8071 byte(s)
Diff to previous 151408 (colored)
Doxygen fixup / cleanup

submited by: Neale Ranns neale ranns.org
reviewed by: Ian Holsman


Revision 151408 - (view) (annotate) - [select for diffs]
Modified Fri Feb 4 20:28:49 2005 UTC (4 years, 9 months ago) by jerenkrantz
File length: 7942 byte(s)
Diff to previous 106103 (colored)
Update copyright year to 2005 and standardize on current copyright owner line.

Revision 106103 - (view) (annotate) - [select for diffs]
Modified Sun Nov 21 18:50:36 2004 UTC (5 years ago) by nd
File length: 7906 byte(s)
Diff to previous 105919 (colored)
general property cleanup

Revision 105919 - (view) (annotate) - [select for diffs]
Modified Sat Nov 20 02:52:36 2004 UTC (5 years ago) by pquerna
File length: 7906 byte(s)
Diff to previous 102619 (colored)
The Event MPM.
Designed to minimize Apache's KeepAlive overhead.

This MPM depends on the current APR-trunk for new features added to 
the apr_pollset interface. Currently the underlying operating
system must support KQueue or EPoll.

Status:
  Should work as a drop in replacement for all non-ssl servers.
  SSL Requests that use HTTP 1.1 Pipelining do not currently work.

Testing:
  I have tested it with Linux 2.6, FreeBSD 5.2.1, and OS X 10.3.
  
Originally based on the patch by Greg Ames.

Revision 102619 - (view) (annotate) - [select for diffs]
Modified Mon Feb 9 20:40:53 2004 UTC (5 years, 9 months ago) by nd
File length: 7824 byte(s)
Diff to previous 102548 (colored)
fix name of The Apache Software Foundation

Revision 102548 - (view) (annotate) - [select for diffs]
Modified Sat Feb 7 19:27:57 2004 UTC (5 years, 9 months ago) by nd
File length: 7820 byte(s)
Diff to previous 102525 (colored)
fix copyright dates according to the first check in

Revision 102525 - (view) (annotate) - [select for diffs]
Modified Fri Feb 6 22:58:42 2004 UTC (5 years, 9 months ago) by nd
File length: 7820 byte(s)
Diff to previous 102504 (colored)
apply Apache License, Version 2.0

Revision 102504 - (view) (annotate) - [select for diffs]
Modified Wed Feb 4 20:18:32 2004 UTC (5 years, 9 months ago) by nd
File length: 9846 byte(s)
Diff to previous 102135 (colored)
outch. Fix include guard to match the right name.

Revision 102135 - (view) (annotate) - [select for diffs]
Modified Thu Jan 1 13:26:26 2004 UTC (5 years, 10 months ago) by nd
File length: 9846 byte(s)
Diff to previous 102019 (colored)
update license to 2004.

Revision 102019 - (view) (annotate) - [select for diffs]
Modified Wed Dec 10 20:45:09 2003 UTC (5 years, 11 months ago) by trawick
File length: 9846 byte(s)
Diff to previous 101899 (colored)
add new MPM query -- AP_MPMQ_MPM_STATE -- to find out what the MPM
is doing

work-in-progress; not so useful until other MPMs support it

Revision 101899 - (view) (annotate) - [select for diffs]
Modified Wed Nov 26 03:45:34 2003 UTC (6 years ago) by trawick
File length: 9606 byte(s)
Diff to previous 98573 (colored)
Add fatal exception hook for use by debug modules.  The hook is only
available if the --enable-exception-hook configure parm is used.

Sample users at http://httpd.apache.org/~trawick/exception_hook.html

Revision 98573 - (view) (annotate) - [select for diffs]
Modified Mon Feb 3 17:53:28 2003 UTC (6 years, 9 months ago) by nd
File length: 9388 byte(s)
Diff to previous 93918 (colored)
finished that boring job:
update license to 2003.

Happy New Year! ;-))

Revision 93918 - (view) (annotate) - [select for diffs]
Modified Wed Mar 13 20:48:07 2002 UTC (7 years, 8 months ago) by fielding
File length: 9388 byte(s)
Diff to previous 92230 (colored)
Update our copyright for this year.

Revision 92230 - (view) (annotate) - [select for diffs]
Modified Thu Nov 29 04:06:05 2001 UTC (8 years ago) by dougm
File length: 9388 byte(s)
Diff to previous 91916 (colored)
carry over from 1.3: disable profiling in the parent process #ifdef GPROF
PR:
Obtained from:
Submitted by:
Reviewed by:

Revision 91916 - (view) (annotate) - [select for diffs]
Modified Tue Nov 13 22:42:38 2001 UTC (8 years ago) by rbb
File length: 8889 byte(s)
Diff to previous 91777 (colored)
Allow modules that add sockets to the ap_listeners list to
define the function that should be used to accept on that
socket.  Each MPM can define their own function to use for
the accept function with the MPM_ACCEPT_FUNC macro.  This
also abstracts out all of the Unix accept error handling
logic, which has become out of synch across Unix MPMs.

The code flow is much easier now for different transports:

1)  During pre-config, post-config or while parsing the config
    file, add a socket to the ap_listeners list, making sure to
    define an accept function at the same time.

2)  MPMs find the correct listener, and call the accept function
    that was defined in step 1.

3)  That accept function returns a void pointer, which is passed
    to the create_connection hook.

4)  create_connection adds the correct low-level filters.

Revision 91777 - (view) (annotate) - [select for diffs]
Modified Wed Nov 7 05:29:58 2001 UTC (8 years ago) by jwoolley
File length: 8859 byte(s)
Diff to previous 90173 (colored)
Fix the spelling of the AP_MPMQ_MIN_SPARE_DAEMONS and
AP_MPMQ_MAX_REQUESTS_DAEMON macros.  Better to do it now rather than later.

**WARNING** This will of course break the compile on any third-party MPMs
you might have floating around, but it's a really quick change to make.

Revision 90173 - (view) (annotate) - [select for diffs]
Modified Wed Aug 15 21:11:59 2001 UTC (8 years, 3 months ago) by trawick
File length: 8859 byte(s)
Diff to previous 89604 (colored)
fix some homophonic issues in comments, as well as some
mispelings found near "its" or "it's"

(helping our 4th grader with homework, couldn't help but
grep)

Revision 89604 - (view) (annotate) - [select for diffs]
Modified Wed Jul 18 20:29:00 2001 UTC (8 years, 4 months ago) by rederpj
File length: 8858 byte(s)
Diff to previous 89433 (colored)

Changed AP_MPMQ_MAX_DAEMONS to refer to MaxClients and
added an AP_MPMQ_MAX_DAEMON_USED to refer to the highest
daemon index actually used in the scoreboard. I also
updated the pertinent calls.

Paul J. Reder

Revision 89433 - (view) (annotate) - [select for diffs]
Modified Wed Jun 27 17:43:51 2001 UTC (8 years, 5 months ago) by wrowe
File length: 8782 byte(s)
Diff to previous 88851 (colored)
  Add additional query datum to the MPMs.
  Harrie Hazewinkel <harrie@covalent.net>

Revision 88851 - (view) (annotate) - [select for diffs]
Modified Fri Apr 13 19:00:39 2001 UTC (8 years, 7 months ago) by rbb
File length: 8359 byte(s)
Diff to previous 88741 (colored)
Add more options to the ap_mpm_query function.  This also allows MPMs to
report if their threads are dynamic or static.  Finally, this also
implements a new API, ap_show_mpm, which returns the MPM that was
required into the core.

We tried to make all of the MPMs report their threading capabilities
correctly, but each MPM expert should double check us.

Submitted by:	Harrie Hazewinkel <harrie@covalent.net>

Revision 88741 - (view) (annotate) - [select for diffs]
Modified Fri Apr 6 20:12:09 2001 UTC (8 years, 7 months ago) by rederpj
File length: 7393 byte(s)
Diff to previous 88437 (colored)
Changes required to make prefork clean up idle children properly. There was a window during which a starting worker deadlocks when an idle cleanup arrives before it completes init. Apache then keeps trying to cleanup the same deadlocked worker forever (until higher pids come along, but it still will never reduce below the deadlocked pid). Thus the number of children would not reduce to the correct idle level.

Revision 88437 - (view) (annotate) - [select for diffs]
Modified Fri Mar 2 22:46:33 2001 UTC (8 years, 8 months ago) by rbb
File length: 7392 byte(s)
Diff to previous 88184 (colored)
Allow modules to query the MPM about it's execution profile.  This
query API can and should be extended in the future, but for now,
max_daemons, and threading or forking is a very good start.

Non-Unix MPM's do have the MPM query function, although there is no
garauntee that the information is perfect, please check.

Submitted by:	Jon Travis <jtravis@covalent.net>

Revision 88184 - (view) (annotate) - [select for diffs]
Modified Fri Feb 16 04:26:53 2001 UTC (8 years, 9 months ago) by fielding
File length: 7111 byte(s)
Diff to previous 88103 (colored)
Update copyright to 2001

Revision 88103 - (view) (annotate) - [select for diffs]
Modified Mon Feb 12 02:49:56 2001 UTC (8 years, 9 months ago) by gstein
File length: 7106 byte(s)
Diff to previous 87428 (colored)
*) remove some obsolete/unused defines from httpd.h.
*) remove DEFAULT_XFERLOG from main.c; it is never set/used
*) move ap_get_max_daemons() to ap_mpm.h
*) move DEFAULT_LISTENBACKLOG to mpm_common.h

Revision 87428 - (view) (annotate) - [select for diffs]
Modified Tue Dec 19 20:44:24 2000 UTC (8 years, 11 months ago) by rbb
File length: 6890 byte(s)
Diff to previous 87080 (colored)
ap_start_shutdown is not used by anybody outside of the MPMs, so we don't
need to put it in the ap_mpm.h header file.  This also makes all of the
instances of ap_start_shutdown static.

Revision 87080 - (view) (annotate) - [select for diffs]
Modified Sun Nov 26 04:47:43 2000 UTC (9 years ago) by gstein
File length: 7586 byte(s)
Diff to previous 86731 (colored)
*) Compensate for recent changes in the APR headers. Specifically, some
   files need to specifically include stdio.h, or a particular apr_*.h
   header.

*) Adjust callers of apr_create_process() to deal with the extra "const"

*) Add "const" to args of ap_os_create_privileged_process()

Revision 86731 - (view) (annotate) - [select for diffs]
Modified Tue Oct 24 11:54:29 2000 UTC (9 years, 1 month ago) by wrowe
File length: 7879 byte(s)
Diff to previous 86712 (colored)
  Get everything working with suexec patches again.

Revision 86712 - (view) (annotate) - [select for diffs]
Modified Mon Oct 23 15:30:57 2000 UTC (9 years, 1 month ago) by manoj
File length: 7619 byte(s)
Diff to previous 86609 (colored)
Add back suexec support.

Revision 86609 - (view) (annotate) - [select for diffs]
Modified Mon Oct 16 06:05:15 2000 UTC (9 years, 1 month ago) by wrowe
File length: 6739 byte(s)
Diff to previous 86136 (colored)
  Renamed all MODULE_EXPORT symbols to AP_MODULE_DECLARE and all symbols
  for CORE_EXPORT to AP_CORE_DECLARE (namespace protecting the wrapper)
  and retitled API_EXPORT as AP_DECLARE and APR_EXPORT as APR_DECLARE.
  All _VAR_ flavors changes to _DATA to be absolutely clear.
  Thank you Greg, for the most obvious suggestion.

Revision 86136 - (view) (annotate) - [select for diffs]
Modified Wed Aug 23 00:01:58 2000 UTC (9 years, 3 months ago) by rbb
File length: 6739 byte(s)
Diff to previous 85976 (colored)
Remove IOLs from Apache.  They are no longer necessary, now that we have
filtering beginning to work.  There is a hack that has been repeated
through this patch, we morph a pipe into a socket, and put the socket
into the BUFF.  Everytime we do that, we are working with a pipe from
a CGI, and we should be creating a pipe bucket and passing that bucket
back.  Because we don't actually have pipe buckets yet, we are using this
hack.  When we get pipe buckets, this will be fixed.

Revision 85976 - (view) (annotate) - [select for diffs]
Modified Wed Aug 2 05:27:38 2000 UTC (9 years, 3 months ago) by dougm
File length: 6743 byte(s)
Diff to previous 85937 (colored)
prefix libapr functions and types with apr_

Revision 85937 - (view) (annotate) - [select for diffs]
Modified Sat Jul 29 18:49:51 2000 UTC (9 years, 4 months ago) by rbb
File length: 6738 byte(s)
Diff to previous 85309 (colored)
Document ap_mpm.h using ScanDoc.

Revision 85309 - (view) (annotate) - [select for diffs]
Modified Sat May 27 05:28:02 2000 UTC (9 years, 6 months ago) by wrowe
File length: 6323 byte(s)
Diff to previous 85136 (colored)
  This patch corrects the issues from the AP_EXPORT and linkage 
  specification arguments to the ap_hooks.h declarations.  As with
  the APR_ and AP_ patches, API_VAR_EXPORT becomes API_EXPORT_VAR,
  and MODULE_VAR_EXPORT becomes MODULE_EXPORT_VAR.

  I will be happy to revert the inclusion of ap_config.h from 
  httpd.h if this bothers anyone.  More individual modules need
  to be patched if we do so.

  The API_EXPORTs all moved into central storage in the ap_config.h
  header.  Without WIN32 or API_STATIC compile time declarations, 
  these macros remain no-ops.

  This patch also moves the following data from http_main to http_config:

    const char *ap_server_argv0;
    const char *ap_server_root;
    ap_array_header_t *ap_server_pre_read_config;
    ap_array_header_t *ap_server_post_read_config;
    ap_array_header_t *ap_server_config_defines;

  And the following variables had already moved into ap_hooks.c:

    ap_pool_t *g_pHookPool;  (initialized now in http_config)
    int g_bDebugHooks;                   (out of http_config)
    const char *g_szCurrentHookName;     (out of http_config)

  The changes to http_main.c are in preparation for that module to
  move out to a seperate .exe for win32.  Other platforms will be
  unaffected, outside of these changes.

Revision 85136 - (view) (annotate) - [select for diffs]
Modified Thu May 4 04:02:37 2000 UTC (9 years, 6 months ago) by rbb
File length: 6299 byte(s)
Diff to previous 84963 (colored)
Make reliable piped logs work on 2.0.

Revision 84963 - (view) (annotate) - [select for diffs]
Modified Fri Apr 14 15:59:20 2000 UTC (9 years, 7 months ago) by rbb
File length: 7888 byte(s)
Diff to previous 84877 (colored)
Change ap_context_t to ap_pool_t.  This compiles, runs, and serves pages
on Linux, but probably breaks somewhere.

Revision 84877 - (view) (annotate) - [select for diffs]
Modified Fri Mar 31 07:19:05 2000 UTC (9 years, 7 months ago) by fielding
File length: 7900 byte(s)
Diff to previous 84725 (colored)
Update to Apache Software License version 1.1

Revision 84725 - (view) (annotate) - [select for diffs]
Modified Fri Mar 10 00:07:37 2000 UTC (9 years, 8 months ago) by rbb
File length: 8238 byte(s)
Diff to previous 84341 (colored)
Fix all the License issues.  Including:
s/Apache Group/Apache Software Foundation/
s/1999/2000/
s/Sascha's license/ASF license

Revision 84341 - (view) (annotate) - [select for diffs]
Modified Mon Dec 20 19:07:33 1999 UTC (9 years, 11 months ago) by stoddard
File length: 8112 byte(s)
Diff to previous 84290 (colored)
Handle -k restart|shutdown command line option from http_main.c

Revision 84290 - (view) (annotate) - [select for diffs]
Modified Mon Dec 13 22:53:25 1999 UTC (9 years, 11 months ago) by rbb
File length: 7949 byte(s)
Diff to previous 84138 (colored)
Fix some warnings when configured with --enable-maintainer-mode.
ap_start_(shutdown|restart) are no longer static in dexter, because we
explicitly state we are creating them to be called from places other than
the parent.  This is the first in a series of patches to get the 2.0 code
to compile cleanly again.

Revision 84138 - (view) (annotate) - [select for diffs]
Modified Fri Nov 19 20:27:32 1999 UTC (10 years ago) by rbb
File length: 7258 byte(s)
Diff to previous 83852 (colored)
Remove the ap_thread_mutex code from all MPM's.  This code isn't actually
being called anywhere, and I have compiled dexter, mpmt_pthread, and
prefork without it.  Away it goes.

Revision 83852 - (view) (annotate) - [select for diffs]
Modified Tue Aug 31 05:35:52 1999 UTC (10 years, 2 months ago) by rbb
File length: 7720 byte(s)
Diff to previous 83355 (colored)
Changed pools to contexts.  Tested with prefork and pthread mpm's.  I'll
check this out tomorrow and make sure everything was checked in correctly.

Revision 83355 - (view) (annotate) - [select for diffs]
Modified Sun Jun 20 23:09:53 1999 UTC (10 years, 5 months ago) by dgaudet
File length: 7696 byte(s)
Diff to previous 83353 (colored)
ap_mpm_graceful_stop -> ap_graceful_stop_signalled

Revision 83353 - (view) (annotate) - [select for diffs]
Modified Sun Jun 20 22:05:13 1999 UTC (10 years, 5 months ago) by dgaudet
File length: 7690 byte(s)
Diff to previous 83351 (colored)
documentation

Revision 83351 - (view) (annotate) - [select for diffs]
Modified Sun Jun 20 21:12:49 1999 UTC (10 years, 5 months ago) by dgaudet
File length: 5132 byte(s)
Diff to previous 83343 (colored)
crude ap_thread_mutex abstraction

Revision 83343 - (view) (annotate) - [select for diffs]
Added Fri Jun 18 18:39:23 1999 UTC (10 years, 5 months ago) by dgaudet
File length: 4787 byte(s)
Initial revision

This form allows you to request diffs between any two revisions of this file. For each of the two "sides" of the diff, enter a numeric revision.

  Diffs between and
  Type of Diff should be a

apache@apache.org
ViewVC Help
Powered by ViewVC 1.1.2