timers.h
上传用户:pycemail
上传日期:2007-01-04
资源大小:329k
文件大小:1k
源码类别:

Ftp客户端

开发平台:

Unix_Linux

  1. /*
  2.  * ProFTPD - FTP server daemon
  3.  * Copyright (c) 1997, 1998 Public Flood Software
  4.  *
  5.  * This program is free software; you can redistribute it and/or modify
  6.  * it under the terms of the GNU General Public License as published by
  7.  * the Free Software Foundation; either version 2 of the License, or
  8.  * (at your option) any later version.
  9.  *
  10.  * This program is distributed in the hope that it will be useful,
  11.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  13.  * GNU General Public License for more details.
  14.  *
  15.  * You should have received a copy of the GNU General Public License
  16.  * along with this program; if not, write to the Free Software
  17.  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307, USA.
  18.  */
  19. #ifndef __TIMERS_H
  20. #define __TIMERS_H
  21. typedef struct timer_struc {
  22.   struct timer_struc *next,*prev;
  23.   long count; /* Amount of time remaining */
  24.   long interval; /* Original length of timer */
  25.   int timerno; /* Caller dependent timer number */
  26.   module *mod; /* Module owning this timer */
  27.   callback_t callback; /* Function to callback */
  28.   char remove; /* Internal use */
  29. } timer_t;
  30. /* Prototypes */
  31. int add_timer(int seconds,int timerno,module *mod, callback_t cb);
  32. int remove_timer(int timerno,module *mod);
  33. int reset_timer(int timerno,module *mod);
  34. int timer_sleep(int);
  35. void handle_sig_alarm();
  36. #endif /* __TIMERS_H */