~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysys/thr_alarm.h

  • Committer: Monty Taylor
  • Date: 2009-01-09 19:40:29 UTC
  • mto: (779.1.4 devel)
  • mto: This revision was merged to the branch mainline in revision 784.
  • Revision ID: mordred@inaugust.com-20090109194029-vcic3m30e4uj0smj
General build cleanup - removed cruft, removed depreated checks.

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