~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysys/thr_alarm.h

  • Committer: Stewart Smith
  • Date: 2008-09-15 07:13:59 UTC
  • mfrom: (383.1.21 drizzle)
  • mto: This revision was merged to the branch mainline in revision 408.
  • Revision ID: stewart@flamingspork.com-20080915071359-f8bznznyaiqrtqxa
merged

Show diffs side-by-side

added added

removed removed

Lines of Context:
34
34
 
35
35
typedef struct st_alarm_info
36
36
{
37
 
  ulong next_alarm_time;
 
37
  uint32_t next_alarm_time;
38
38
  uint active_alarms;
39
39
  uint max_used_alarms;
40
40
} ALARM_INFO;
68
68
typedef thr_alarm_entry* thr_alarm_t;
69
69
 
70
70
typedef struct st_alarm {
71
 
  ulong expire_time;
 
71
  uint32_t expire_time;
72
72
  thr_alarm_entry alarmed;              /* set when alarm is due */
73
73
  pthread_t thread;
74
74
  my_thread_id thread_id;