sig_alrm.c 168 B

1234567891011
  1. #include "trace.h"
  2. int gotalarm;
  3. void
  4. sig_alrm(int signo)
  5. {
  6. gotalarm = 1; /* set flag to note that alarm occurred */
  7. return; /* and interrupt the recvfrom() */
  8. }