(syms_of_ntproc) <w32-get-true-file-attributes>: Doc fix.
[bpt/emacs.git] / src / atimer.h
CommitLineData
e12489f9 1/* Asynchronous timers.
429ab54e 2 Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005,
8cabe764 3 2006, 2007, 2008 Free Software Foundation, Inc.
e12489f9
GM
4
5This file is part of GNU Emacs.
6
7GNU Emacs is free software; you can redistribute it and/or modify
8it under the terms of the GNU General Public License as published by
684d6f5b 9the Free Software Foundation; either version 3, or (at your option)
e12489f9
GM
10any later version.
11
12GNU Emacs is distributed in the hope that it will be useful,
13but WITHOUT ANY WARRANTY; without even the implied warranty of
14MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15GNU General Public License for more details.
16
17You should have received a copy of the GNU General Public License
18along with GNU Emacs; see the file COPYING. If not, write to
4fc5845f
LK
19the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
20Boston, MA 02110-1301, USA. */
e12489f9 21
ffd8f46e
DL
22#ifndef EMACS_ATIMER_H
23#define EMACS_ATIMER_H
24
82377c38
RS
25/* Declare the prototype for a general external function. */
26#if defined (PROTOTYPES) || defined (WINDOWSNT)
27#define P_(proto) proto
28#else
29#define P_(proto) ()
30#endif
31
ffd8f46e
DL
32#include "systime.h" /* for EMACS_TIME */
33
e12489f9
GM
34/* Forward declaration. */
35
36struct atimer;
37
38/* Types of timers. */
39
40enum atimer_type
41{
42 /* Timer is ripe at some absolute time. */
43 ATIMER_ABSOLUTE,
44
45 /* Timer is ripe at now plus an offset. */
46 ATIMER_RELATIVE,
47
48 /* Timer runs continously. */
49 ATIMER_CONTINUOUS
50};
51
52/* Type of timer callback functions. */
53
54typedef void (* atimer_callback) P_ ((struct atimer *timer));
55
56/* Structure describing an asynchronous timer. */
57
58struct atimer
59{
60 /* The type of this timer. */
61 enum atimer_type type;
177c0ea7 62
e12489f9
GM
63 /* Time when this timer is ripe. */
64 EMACS_TIME expiration;
65
66 /* Interval of this timer. */
67 EMACS_TIME interval;
68
5f351ff1
PJ
69 /* Function to call when timer is ripe. Interrupt input is
70 guaranteed to not be blocked when this function is called. */
e12489f9
GM
71 atimer_callback fn;
72
73 /* Additional user-specified data to pass to FN. */
74 void *client_data;
75
76 /* Next in list of active or free atimers. */
77 struct atimer *next;
78};
79
80/* Function prototypes. */
81
82struct atimer *start_atimer P_ ((enum atimer_type, EMACS_TIME,
83 atimer_callback, void *));
84void cancel_atimer P_ ((struct atimer *));
85void do_pending_atimers P_ ((void));
86void init_atimer P_ ((void));
87void turn_on_atimers P_ ((int));
67a516c6
GM
88void stop_other_atimers P_ ((struct atimer *));
89void run_all_atimers P_ ((void));
90Lisp_Object unwind_stop_other_atimers P_ ((Lisp_Object));
e12489f9 91
ffd8f46e 92#endif /* EMACS_ATIMER_H */
ab5796a9
MB
93
94/* arch-tag: 02c7c1c8-45bd-4222-b874-4ca44662f60b
95 (do not change this comment) */