~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to storage/myisam/mf_keycache.c

  • Committer: Brian Aker
  • Date: 2008-07-13 22:21:51 UTC
  • Revision ID: brian@tangent.org-20080713222151-fv2tcpbsc829j2oc
Ulonglong to uint64_t

Show diffs side-by-side

added added

removed removed

Lines of Context:
211
211
  uint status;            /* state of the block                              */
212
212
  enum BLOCK_TEMPERATURE temperature; /* block temperature: cold, warm, hot */
213
213
  uint hits_left;         /* number of hits left until promotion             */
214
 
  ulonglong last_hit_time; /* timestamp of the last hit                      */
 
214
  uint64_t last_hit_time; /* timestamp of the last hit                      */
215
215
  KEYCACHE_CONDVAR *condvar; /* condition variable for 'no readers' event    */
216
216
};
217
217