File: timer.h

package info (click to toggle)
dancer-services 1.8.0.6.3-4
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 2,600 kB
  • ctags: 1,623
  • sloc: ansic: 34,690; sh: 2,850; makefile: 269
file content (27 lines) | stat: -rw-r--r-- 516 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/*
 * timer.h
 * Copyright (C) 1999 Patrick Alken
 *
 * $Id: timer.h,v 1.1.1.1 2001/03/03 01:48:53 wcampbel Exp $
 */

#ifndef INCLUDED_timer_h
#define INCLUDED_timer_h

#ifndef INCLUDED_defs_h
#include "defs.h"        /* HAVE_PTHREADS */
#define INCLUDED_defs_h
#endif

/* timer.c prototypes */

#if defined HAVE_PTHREADS || defined HAVE_SOLARIS_THREADS

void *p_CheckSignals();
void *p_CheckTime();

#endif /* HAVE_PTHREADS || HAVE_SOLARIS_THREADS */

void DoTimer(time_t unixtime);

#endif /* INCLUDED_timer_h */