67746e0d18eeceb247fc940148c9b4d358929643 1180681 |
|
09-Oct-2011 |
sf |
Add -D DUMP_RUN_CFG option to dump some configuration items
from the parsed (or default) config. This is useful for init scripts that
need to setup temporary directories and permissions, for example if those
temporary directories are located on a ram disk. |
742318b93e89c311f66b55f426c4d9cf2c14628b 1174748 |
|
23-Sep-2011 |
jim |
Cleanup effort in prep for GA push:
Trim trailing whitespace... no func change |
6a00621903eff76c1a3ebc3ee46f5e59a492bf77 940979 |
|
04-May-2010 |
wrowe |
It is not inconvenient to return the derived filename here, let's
save the caller later hassle in looking this up, if they like. |
ead0b57bbeaec5acb14f931b5641962f429dabc9 912666 |
|
22-Feb-2010 |
trawick |
Fix startup segfault when the Mutex directive is used but no loaded
modules use httpd mutexes.
Add an init call from core's pre-config hook to ensure init is
performed before the config is parsed.
PR: 48787 |
2b6c7b8eb5fbc43564898aedac730df7e91da475 886154 |
|
02-Dec-2009 |
trawick |
Add OmitPID keyword on Mutex directive to suppress the
addition of the parent pid to the generated lock file
name.
Change the Mutex directive syntax from
Mutex default|mutex-name mechanism
to
Mutex mechanism [default|mutex-name] ... [OmitPID]
as suggested by wrowe. (Thanks!) |
f117c50b1d0e98940c4bb5b464dfb3a09d8a5c4f 885784 |
|
01-Dec-2009 |
trawick |
include definition of cmd_parms |
f4c8f0f5f11dd9f387441204fbe6d109f5c4eb25 883859 |
|
24-Nov-2009 |
trawick |
fix the "fix" in r883816
internal function ap_set_mutex() should be AP_DECLARE_NONSTD()
like our other directive parsers |
d7b1e53a274fb37511f86b8808d72b532be925a5 883816 |
|
24-Nov-2009 |
trawick |
fix Win32 compile failure in r883540, reported by Gregg Smith
(on Win32, external APIs use one calling convention while directive
parsers use a different one) |
11f2c481e1d57bedb3f758565307501e9a2730dd 883540 |
|
24-Nov-2009 |
trawick |
Replace AcceptMutex, LockFile, RewriteLock, SSLMutex, SSLStaplingMutex,
and WatchdogMutexPath with a single Mutex directive. Add APIs to
simplify setup and user customization of APR proc and global mutexes.
(See util_mutex.h.) Build-time setting DEFAULT_LOCKFILE is no longer
respected; set DEFAULT_REL_RUNTIMEDIR instead.
Some existing modules, such as mod_ldap and mod_auth_digest gain
configurability for their mutexes. |
f8aafb8bd93472f7da5a7c158958ee09e4176c8e 758613 |
|
26-Mar-2009 |
trawick |
remove leader, perchild, and threadpool MPMs (other than non-English bits in common parts of the manual) |
c95d39bd1b86b856ca72485516e7b2e61008fe96 568833 |
|
23-Aug-2007 |
wrowe |
ap_available_mutexes_string and ap_add_available_mutexes_string
cannot be data symbols when mod_ssl is built as a loadable module;
using an external string constant in a loadable module is not portable.
Also reorganize file and sem to follow their explicit mechanisms,
and ensured that the explicit mechansims are listed in order of
preference.
This raises a question, would [fcntl|file] be a clearer way of
indiciating what the file/sem methods devolve to? |
cc0bf3af983afd28b83699bb17f53225752e589d 568794 |
|
23-Aug-2007 |
wrowe |
Minor quibble; the declarespec for data comes after the data type. |
f47c690c6fa01fa4334306be872da72fb9a3cdad 553013 |
|
04-Jul-2007 |
sctemme |
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. |
67139e2d50d1e11558d87f7042f61cb04bb0d1d2 467326 |
|
24-Oct-2006 |
jim |
Once SSLMutex allowed for the setting of both the
locking method and the lockfile location, I never
liked how AcceptMutex was linked to LockFile. This
seemed unnecessary. Much better to have AcceptMutex
do both as well. Plus, now that we will likely see
other modules require a "standard" way of setting
mutexes, why not have Apache provide that as
an API of sorts.
Anyway, LockFile is now depreciated and AcceptMutex
is now SSLMutex-like. We also provide a short
function that "parses" out a mutex parameter
and strips out the mechanism and lockfile location.
AcceptMutex and SSLMutex is this capability. |