~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/logging_stats/scoreboard.h

  • Committer: Joseph Daly
  • Date: 2010-08-16 23:22:48 UTC
  • mto: (1725.1.2 build)
  • mto: This revision was merged to the branch mainline in revision 1726.
  • Revision ID: jdaly@rx7-20100816232248-43klwm1fzquol5ck
merge trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
71
71
    return number_buckets;
72
72
  }
73
73
 
 
74
  uint64_t getScoreboardSizeBytes()
 
75
  {
 
76
    return scoreboard_size_bytes;
 
77
  } 
 
78
 
74
79
  std::vector<boost::shared_mutex* >* getVectorOfScoreboardLocks()
75
80
  {
76
81
    return &vector_of_scoreboard_locks;
84
89
private:
85
90
  uint32_t number_sessions;
86
91
  uint32_t number_buckets;
 
92
  uint64_t scoreboard_size_bytes;
87
93
  std::vector<std::vector<ScoreboardSlot* >* > vector_of_scoreboard_vectors;
88
94
  std::vector<boost::shared_mutex* > vector_of_scoreboard_locks;
89
95