~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysys/thr_alarm.h

  • Committer: Brian Aker
  • Date: 2009-01-10 22:27:38 UTC
  • mfrom: (779.1.8 devel)
  • Revision ID: brian@tangent.org-20090110222738-zx4zzq9lsa3othvn
Merge for Monty

Show diffs side-by-side

added added

removed removed

Lines of Context:
82
82
extern pthread_t alarm_thread;
83
83
 
84
84
int compare_uint32_t(void *unused, unsigned char *a_ptr,unsigned char* b_ptr);
85
 
RETSIGTYPE thread_alarm(int sig);
 
85
void thread_alarm(int sig);
86
86
 
87
87
#define thr_alarm_init(A) (*(A))=0
88
88
#define thr_alarm_in_use(A) (*(A)!= 0)
92
92
void thr_alarm_kill(my_thread_id thread_id);
93
93
void thr_end_alarm(thr_alarm_t *alarmed);
94
94
void end_thr_alarm(bool free_structures);
95
 
RETSIGTYPE process_alarm(int);
 
95
void process_alarm(int);
96
96
#ifndef thr_got_alarm
97
97
bool thr_got_alarm(thr_alarm_t *alrm);
98
98
#endif