~ubuntu-branches/ubuntu/vivid/apr-util/vivid

« back to all changes in this revision

Viewing changes to include/apr_buckets.h

  • Committer: Package Import Robot
  • Author(s): Stefan Fritsch
  • Date: 2013-11-24 14:21:14 UTC
  • mfrom: (1.3.5)
  • Revision ID: package-import@ubuntu.com-20131124142114-eguh8q7qlatwd6za
Tags: 1.5.3-1
* New upstream version.
* When querying the berkley db version, strip the epoch from the
  version number.

Show diffs side-by-side

added added

removed removed

Lines of Context:
351
351
#define APR_BRIGADE_LAST(b)     APR_RING_LAST(&(b)->list)
352
352
 
353
353
/**
354
 
 * Insert a list of buckets at the front of a brigade
 
354
 * Insert a single bucket at the front of a brigade
355
355
 * @param b The brigade to add to
356
 
 * @param e The first bucket in a list of buckets to insert
 
356
 * @param e The bucket to insert
357
357
 */
358
358
#define APR_BRIGADE_INSERT_HEAD(b, e) do {                              \
359
359
        apr_bucket *ap__b = (e);                                        \
362
362
    } while (0)
363
363
 
364
364
/**
365
 
 * Insert a list of buckets at the end of a brigade
 
365
 * Insert a single bucket at the end of a brigade
366
366
 * @param b The brigade to add to
367
 
 * @param e The first bucket in a list of buckets to insert
 
367
 * @param e The bucket to insert
368
368
 */
369
369
#define APR_BRIGADE_INSERT_TAIL(b, e) do {                              \
370
370
        apr_bucket *ap__b = (e);                                        \
393
393
    } while (0)
394
394
 
395
395
/**
396
 
 * Insert a list of buckets before a specified bucket
 
396
 * Insert a single bucket before a specified bucket
397
397
 * @param a The bucket to insert before
398
 
 * @param b The buckets to insert
 
398
 * @param b The bucket to insert
399
399
 */
400
400
#define APR_BUCKET_INSERT_BEFORE(a, b) do {                             \
401
401
        apr_bucket *ap__a = (a), *ap__b = (b);                          \
404
404
    } while (0)
405
405
 
406
406
/**
407
 
 * Insert a list of buckets after a specified bucket
 
407
 * Insert a single bucket after a specified bucket
408
408
 * @param a The bucket to insert after
409
 
 * @param b The buckets to insert
 
409
 * @param b The bucket to insert
410
410
 */
411
411
#define APR_BUCKET_INSERT_AFTER(a, b) do {                              \
412
412
        apr_bucket *ap__a = (a), *ap__b = (b);                          \