diff options
author | Vsevolod Stakhov <vsevolod@rambler-co.ru> | 2009-05-21 19:24:14 +0400 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@rambler-co.ru> | 2009-05-21 19:24:14 +0400 |
commit | bbb0dcecb71e18f6bebd78aecbdedd6ecb9d7bbe (patch) | |
tree | b882d3719f702a28c790552b45b66ef3fe68a165 /src/statfile.h | |
parent | 335b940b6a5b22e6ba123c313877ca85235e2678 (diff) | |
download | rspamd-bbb0dcecb71e18f6bebd78aecbdedd6ecb9d7bbe.tar.gz rspamd-bbb0dcecb71e18f6bebd78aecbdedd6ecb9d7bbe.zip |
* Add deadlock detection for memory pool locks and imporve mutexes API
Diffstat (limited to 'src/statfile.h')
-rw-r--r-- | src/statfile.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/statfile.h b/src/statfile.h index 39537944a..f2c5dbbf2 100644 --- a/src/statfile.h +++ b/src/statfile.h @@ -67,7 +67,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) */ - gint *lock; /**< mutex */ + memory_pool_mutex_t *lock; /**< mutex */ } stat_file_t; /** |