diff options
author | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2014-04-20 08:16:49 -0700 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2014-04-20 08:16:49 -0700 |
commit | ad837700b86153be3587672124ee663c964f0f15 (patch) | |
tree | 7ec6e8fbe539a169d501a3d1767644b68fab2dab /src/statfile.h | |
parent | baeb17562f47dc31610c0f65079c45a7e6ad44bb (diff) | |
download | rspamd-ad837700b86153be3587672124ee663c964f0f15.tar.gz rspamd-ad837700b86153be3587672124ee663c964f0f15.zip |
Refactor memory pool naming.
Diffstat (limited to 'src/statfile.h')
-rw-r--r-- | src/statfile.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/statfile.h b/src/statfile.h index ced4f2207..5786c4927 100644 --- a/src/statfile.h +++ b/src/statfile.h @@ -78,7 +78,7 @@ typedef struct stat_file_s { time_t open_time; /**< time when file was opened */ time_t access_time; /**< last access time */ size_t len; /**< length of file(in bytes) */ - memory_pool_mutex_t *lock; /**< mutex */ + rspamd_mempool_mutex_t *lock; /**< mutex */ } stat_file_t; /** @@ -88,8 +88,8 @@ typedef struct statfile_pool_s { stat_file_t *files; /**< hash table of opened files indexed by name */ void **maps; /**< shared hash table of mmaped areas indexed by name */ gint opened; /**< number of opened files */ - memory_pool_t *pool; /**< memory pool object */ - memory_pool_mutex_t *lock; /**< mutex */ + rspamd_mempool_t *pool; /**< memory pool object */ + rspamd_mempool_mutex_t *lock; /**< mutex */ struct event *invalidate_event; /**< event for pool invalidation */ struct timeval invalidate_tv; gboolean mlock_ok; /**< whether it is possible to use mlock (2) to avoid statfiles unloading */ @@ -104,7 +104,7 @@ struct statfile; * @param max_size maximum size * @return statfile pool object */ -statfile_pool_t* statfile_pool_new (memory_pool_t *pool, gboolean use_mlock); +statfile_pool_t* statfile_pool_new (rspamd_mempool_t *pool, gboolean use_mlock); /** * Open statfile and attach it to pool |