diff options
author | Amar Tumballi <amarts@redhat.com> | 2012-08-07 10:03:47 +0530 |
---|---|---|
committer | Anand Avati <avati@redhat.com> | 2012-08-06 21:51:35 -0700 |
commit | 828b2b7059093972381bc64047025a7d8cac508e (patch) | |
tree | 3be94074784fa237436723db79e3c3144e59dcd4 /libglusterfs/src/globals.h | |
parent | 87d453f7211d3a38113aea895947143ea8bf7d68 (diff) |
core: moved back the pthread_key_t specific variables as global
in a patch to move all the global variables inside 'ctx', moved all
the pthread_key_t specific globals, which needed to be global, not inside
some structures.
Change-Id: I5e7107a8a64f5b80e90fd469fb084f62b2312705
Signed-off-by: Amar Tumballi <amarts@redhat.com>
BUG: 764890
Reviewed-on: http://review.gluster.com/3783
Tested-by: Gluster Build System <jenkins@build.gluster.com>
Reviewed-by: Anand Avati <avati@redhat.com>
Diffstat (limited to 'libglusterfs/src/globals.h')
-rw-r--r-- | libglusterfs/src/globals.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libglusterfs/src/globals.h b/libglusterfs/src/globals.h index 47a81afb808..e13902b2992 100644 --- a/libglusterfs/src/globals.h +++ b/libglusterfs/src/globals.h @@ -24,12 +24,12 @@ int glusterfs_this_set (xlator_t *); /* task */ void *synctask_get (); -int synctask_set (glusterfs_ctx_t *, void *); +int synctask_set (void *); /* uuid_buf */ -char *glusterfs_uuid_buf_get(glusterfs_ctx_t *); +char *glusterfs_uuid_buf_get(); /* lkowner_buf */ -char *glusterfs_lkowner_buf_get(glusterfs_ctx_t *); +char *glusterfs_lkowner_buf_get(); /* init */ int glusterfs_globals_init (glusterfs_ctx_t *ctx); |