~mysql/mysql-server/mysql-6.0

« back to all changes in this revision

Viewing changes to storage/falcon/Cache.h

  • Committer: Alexander Nozdrin
  • Date: 2009-04-24 10:04:14 UTC
  • mfrom: (2651.1.45 mysql-6.0)
  • Revision ID: alik@sun.com-20090424100414-92m55kfywauveb56
PullĀ fromĀ 6.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
75
75
        Cache(Database *db, int pageSize, int hashSize, int numberBuffers);
76
76
        virtual ~Cache();
77
77
 
 
78
private:
 
79
        void    startThreads();
 
80
 
 
81
public:
78
82
        SyncObject      syncObject;
79
83
        PageWriter      *pageWriter;
80
84
        Database        *database;
113
117
        int                     numberDirtyPages;
114
118
        int                     numberIoThreads;
115
119
        volatile int bufferAge;
 
120
 
 
121
private:
 
122
        int                     numberIoThreadsStarted;
 
123
 
116
124
public:
117
125
        void flushWait(void);
118
126
};