diff options
Diffstat (limited to 'libglusterfs/src/globals.c')
| -rw-r--r-- | libglusterfs/src/globals.c | 14 | 
1 files changed, 14 insertions, 0 deletions
diff --git a/libglusterfs/src/globals.c b/libglusterfs/src/globals.c index 259c5c885f7..cf707c7af4b 100644 --- a/libglusterfs/src/globals.c +++ b/libglusterfs/src/globals.c @@ -81,8 +81,22 @@ static pthread_key_t uuid_buf_key;  static char          global_uuid_buf[GF_UUID_BUF_SIZE];  static pthread_key_t lkowner_buf_key;  static char          global_lkowner_buf[GF_LKOWNER_BUF_SIZE]; +static int gf_global_mem_acct_enable = 1; +int +gf_global_mem_acct_enable_get (void) +{ +	return gf_global_mem_acct_enable; +} + +int +gf_global_mem_acct_enable_set (int val) +{ +	gf_global_mem_acct_enable = val; +	return 0; +} +  void  glusterfs_this_destroy (void *ptr)  {  | 
