~brianaker/libmemcached/merge-1.0-april-2013

« back to all changes in this revision

Viewing changes to libmemcached/analyze.cc

  • Committer: Continuous Integration
  • Date: 2013-01-14 21:10:11 UTC
  • mfrom: (1094.1.2 libmemcached-1.2)
  • Revision ID: ci@tangent.org-20130114211011-qql124fta45s730w
Merge lp:~tangent-org/libmemcached/1.2-build/ Build: jenkins-Libmemcached-199

Show diffs side-by-side

added added

removed removed

Lines of Context:
61
61
  result->pool_hit_ratio= temp * 100;
62
62
}
63
63
 
64
 
memcached_analysis_st *memcached_analyze(memcached_st *memc,
 
64
memcached_analysis_st *memcached_analyze(memcached_st *shell,
65
65
                                         memcached_stat_st *memc_stat,
66
66
                                         memcached_return_t *error)
67
67
{
 
68
  Memcached* memc= memcached2Memcached(shell);
68
69
  uint64_t total_items= 0, total_bytes= 0;
69
70
  uint64_t total_get_cmds= 0, total_get_hits= 0;
70
71