mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-01-08 04:30:45 -08:00
* lisp.h: * atimer.h: Remove define for P_. * alloc.c: Remove __P and P_ from .c and .m files. * atimer.c: * buffer.c: * callint.c: * category.c: * charset.c: * chartab.c: * cm.c: * coding.c: * composite.c: * data.c: * dired.c: * dispnew.c: * doc.c: * editfns.c: * emacs.c: * eval.c: * fileio.c: * filelock.c: * fns.c: * font.c: * fontset.c: * frame.c: * ftfont.c: * ftxfont.c: * gmalloc.c: * gtkutil.c: * image.c: * indent.c: * intervals.c: * keyboard.c: * keymap.c: * lread.c: * marker.c: * menu.c: * minibuf.c: * print.c: * process.c: * scroll.c: * search.c: * sound.c: * strftime.c: * syntax.c: * sysdep.c: * term.c: * terminal.c: * textprop.c: * unexalpha.c: * w32console.c: * w32fns.c: * w32font.c: * w32menu.c: * w32term.c: * w32uniscribe.c: * window.c: * xdisp.c: * xfaces.c: * xfns.c: * xfont.c: * xftfont.c: * xmenu.c: * xselect.c: * xterm.c: Likewise. * ebrowse.c: Remove P_ and __P. * etags.c: * movemail.c: * pop.c: * update-game-score.c: Likewise.
86 lines
2.3 KiB
C
86 lines
2.3 KiB
C
/* Asynchronous timers.
|
|
Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005,
|
|
2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
|
|
|
|
This file is part of GNU Emacs.
|
|
|
|
GNU Emacs is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
GNU Emacs is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
|
|
|
|
#ifndef EMACS_ATIMER_H
|
|
#define EMACS_ATIMER_H
|
|
|
|
#include "systime.h" /* for EMACS_TIME */
|
|
|
|
/* Forward declaration. */
|
|
|
|
struct atimer;
|
|
|
|
/* Types of timers. */
|
|
|
|
enum atimer_type
|
|
{
|
|
/* Timer is ripe at some absolute time. */
|
|
ATIMER_ABSOLUTE,
|
|
|
|
/* Timer is ripe at now plus an offset. */
|
|
ATIMER_RELATIVE,
|
|
|
|
/* Timer runs continuously. */
|
|
ATIMER_CONTINUOUS
|
|
};
|
|
|
|
/* Type of timer callback functions. */
|
|
|
|
typedef void (* atimer_callback) (struct atimer *timer);
|
|
|
|
/* Structure describing an asynchronous timer. */
|
|
|
|
struct atimer
|
|
{
|
|
/* The type of this timer. */
|
|
enum atimer_type type;
|
|
|
|
/* Time when this timer is ripe. */
|
|
EMACS_TIME expiration;
|
|
|
|
/* Interval of this timer. */
|
|
EMACS_TIME interval;
|
|
|
|
/* Function to call when timer is ripe. Interrupt input is
|
|
guaranteed to not be blocked when this function is called. */
|
|
atimer_callback fn;
|
|
|
|
/* Additional user-specified data to pass to FN. */
|
|
void *client_data;
|
|
|
|
/* Next in list of active or free atimers. */
|
|
struct atimer *next;
|
|
};
|
|
|
|
/* Function prototypes. */
|
|
|
|
struct atimer *start_atimer (enum atimer_type, EMACS_TIME,
|
|
atimer_callback, void *);
|
|
void cancel_atimer (struct atimer *);
|
|
void do_pending_atimers (void);
|
|
void init_atimer (void);
|
|
void turn_on_atimers (int);
|
|
void stop_other_atimers (struct atimer *);
|
|
void run_all_atimers (void);
|
|
Lisp_Object unwind_stop_other_atimers (Lisp_Object);
|
|
|
|
#endif /* EMACS_ATIMER_H */
|
|
|
|
/* arch-tag: 02c7c1c8-45bd-4222-b874-4ca44662f60b
|
|
(do not change this comment) */
|