~ubuntu-branches/ubuntu/hardy/exim4/hardy-proposed

« back to all changes in this revision

Viewing changes to src/store.h

  • Committer: Bazaar Package Importer
  • Author(s): Marc Haber
  • Date: 2005-07-02 06:08:34 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20050702060834-qk17pd52kb9nt3bj
Tags: 4.52-1
* new upstream version 4.51. (mh)
  * adapt 70_remove_exim-users_references
  * remove 37_gnutlsparams
  * adapt 36_pcre
  * adapt 31_eximmanpage
* fix package priorities to have them in sync with override again. (mh)
* Fix error in nb (Norwegian) translation.
  Thanks to Helge Hafting. (mh). Closes: #315775
* Standards-Version: 3.6.2, no changes needed. (mh)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* $Cambridge: exim/exim-src/src/store.h,v 1.2 2005/01/04 10:00:42 ph10 Exp $ */
 
2
 
1
3
/*************************************************
2
4
*     Exim - an Internet mail transport agent    *
3
5
*************************************************/
4
6
 
5
 
/* Copyright (c) University of Cambridge 1995 - 2004 */
 
7
/* Copyright (c) University of Cambridge 1995 - 2005 */
6
8
/* See the file NOTICE for conditions of use and distribution. */
7
9
 
8
10
/* Header for Exim's memory allocation functions */
10
12
#ifndef STORE_H
11
13
#define STORE_H
12
14
 
13
 
/* Define symbols for identifying the two store pools. */
 
15
/* Define symbols for identifying the store pools. */
14
16
 
15
 
#define POOL_MAIN 0
16
 
#define POOL_PERM 1
 
17
enum { POOL_MAIN, POOL_PERM, POOL_SEARCH };
17
18
 
18
19
/* This variable (the one for the current pool) is set by store_get() to its
19
20
yield, and by store_reset() to NULL. This allows string_cat() to optimize its
20
21
store handling. */
21
22
 
22
 
extern void *store_last_get[2];
 
23
extern void *store_last_get[3];
23
24
 
24
25
/* This variable contains the current store pool number. */
25
26