diff options
author | Pranith K <pranithk@gluster.com> | 2011-03-10 02:20:20 +0000 |
---|---|---|
committer | Vijay Bellur <vijay@dev.gluster.com> | 2011-03-10 08:09:54 -0800 |
commit | 496a04f3b2d46893635f93e5a33032969a826cd2 (patch) | |
tree | 7a877c12e0435ec45d96cc8b4df71b5f3f91e068 /libglusterfs/src/common-utils.h | |
parent | 9c945fdebc195c030701257abf42c4959f97234e (diff) |
libglusterfs: Add sort routine
Signed-off-by: Pranith Kumar K <pranithk@gluster.com>
Signed-off-by: Vijay Bellur <vijay@dev.gluster.com>
BUG: 1965 (need a cmd to get io-stat details)
URL: http://bugs.gluster.com/cgi-bin/bugzilla3/show_bug.cgi?id=1965
Diffstat (limited to 'libglusterfs/src/common-utils.h')
-rw-r--r-- | libglusterfs/src/common-utils.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/libglusterfs/src/common-utils.h b/libglusterfs/src/common-utils.h index 96a7c3e4ff9..b6a29b5b993 100644 --- a/libglusterfs/src/common-utils.h +++ b/libglusterfs/src/common-utils.h @@ -76,6 +76,7 @@ enum _gf_boolean }; typedef enum _gf_boolean gf_boolean_t; +typedef int (*gf_cmp) (void *, void *); void gf_global_variable_init(void); @@ -355,5 +356,6 @@ char *uuid_utoa (uuid_t uuid); char *uuid_utoa_r (uuid_t uuid, char *dst); void _get_md5_str (char *out_str, size_t outlen, const uint8_t *input, int n); +void gf_array_insertionsort (void *a, int l, int r, size_t elem_size, + gf_cmp cmp); #endif /* _COMMON_UTILS_H */ - |