~ubuntu-branches/ubuntu/natty/apache2/natty

« back to all changes in this revision

Viewing changes to srclib/apr-util/include/apr_reslist.h

  • Committer: Bazaar Package Importer
  • Author(s): Chuck Short
  • Date: 2011-02-22 13:02:08 UTC
  • mfrom: (14.3.23 sid)
  • Revision ID: james.westby@ubuntu.com-20110222130208-5hrxnun6a8uygfhv
Tags: 2.2.17-1ubuntu1
* Merge from debian unstable, remaining changes:
  - debian/{control, rules}: Enable PIE hardening.
  - debian/{control, rules, apache2.2-common.ufw.profile}: Add ufw profiles.
  - debian/control: Add bzr tag and point it to our tree
  - debain/apache2.py, debian/apache2.2-common.isntall: Add apport hook.
  - debian/control, debian/ask-for-passphrase, debian/config-dir/mods-available/ssl.conf:
    Plymouth aware passphrase dialog program ask-for-passphrase. 

Show diffs side-by-side

added added

removed removed

Lines of Context:
70
70
 *                list will be stored.
71
71
 * @param min Allowed minimum number of available resources. Zero
72
72
 *            creates new resources only when needed.
73
 
 * @param smax Resources will be destroyed to meet this maximum
74
 
 *             restriction as they expire.
 
73
 * @param smax Resources will be destroyed during reslist maintenance to
 
74
 *             meet this maximum restriction as they expire (reach their ttl).
75
75
 * @param hmax Absolute maximum limit on the number of total resources.
76
 
 * @param ttl If non-zero, sets the maximum amount of time in microseconds a
77
 
 *            resource may be available while exceeding the soft limit.
 
76
 * @param ttl If non-zero, sets the maximum amount of time in microseconds an
 
77
 *            unused resource is valid.  Any resource which has exceeded this
 
78
 *            time will be destroyed, either when encountered by
 
79
 *            apr_reslist_acquire() or during reslist maintenance.
78
80
 * @param con Constructor routine that is called to create a new resource.
79
81
 * @param de Destructor routine that is called to destroy an expired resource.
80
82
 * @param params Passed to constructor and deconstructor