~ubuntu-branches/ubuntu/trusty/rsync/trusty

« back to all changes in this revision

Viewing changes to lib/pool_alloc.h

  • Committer: Package Import Robot
  • Author(s): Paul Slootman
  • Date: 2013-10-27 12:01:10 UTC
  • mfrom: (1.1.13) (2.1.11 sid)
  • Revision ID: package-import@ubuntu.com-20131027120110-mpr03n5scqmf40mi
Tags: 3.1.0-2
fix build failure if zlib1g-dev package is not installed;
solved by building without the included zlib source and adding a
build-depends on zlib1g-dev >= 1:1.2.8
closes:32379

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#include <stddef.h>
2
2
 
3
3
#define POOL_CLEAR      (1<<0)          /* zero fill allocations        */
4
 
#define POOL_QALIGN     (1<<1)          /* align data to quanta         */
 
4
#define POOL_NO_QALIGN  (1<<1)          /* don't align data to quanta   */
5
5
#define POOL_INTERN     (1<<2)          /* Allocate extent structures   */
6
 
#define POOL_APPEND     (1<<3)          /*   or appended to extent data */
 
6
#define POOL_PREPEND    (1<<3)          /*   or prepend to extent data  */
7
7
 
8
8
typedef void *alloc_pool_t;
9
9