1992-08-12 15:19:32 +00:00
|
|
|
|
/* systime.h - System-dependent definitions for time manipulations.
|
2012-01-05 09:46:05 +00:00
|
|
|
|
Copyright (C) 1993-1994, 2002-2012 Free Software Foundation, Inc.
|
1992-08-12 15:16:36 +00:00
|
|
|
|
|
|
|
|
|
This file is part of GNU Emacs.
|
|
|
|
|
|
2008-05-15 03:28:14 +00:00
|
|
|
|
GNU Emacs is free software: you can redistribute it and/or modify
|
1992-08-12 15:16:36 +00:00
|
|
|
|
it under the terms of the GNU General Public License as published by
|
2008-05-15 03:28:14 +00:00
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
|
(at your option) any later version.
|
1992-08-12 15:16:36 +00:00
|
|
|
|
|
|
|
|
|
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
|
2008-05-15 03:28:14 +00:00
|
|
|
|
along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
|
1992-08-12 15:16:36 +00:00
|
|
|
|
|
2000-06-11 17:37:16 +00:00
|
|
|
|
#ifndef EMACS_SYSTIME_H
|
|
|
|
|
#define EMACS_SYSTIME_H
|
2000-06-05 14:34:08 +00:00
|
|
|
|
|
2012-06-22 21:17:42 +00:00
|
|
|
|
#include <timespec.h>
|
1992-09-13 13:08:15 +00:00
|
|
|
|
|
2011-05-20 06:37:13 +00:00
|
|
|
|
#ifdef emacs
|
|
|
|
|
# ifdef HAVE_X_WINDOWS
|
|
|
|
|
# include <X11/X.h>
|
|
|
|
|
# else
|
Be more systematic about user-interface timestamps.
Before, the code sometimes used 'Time', sometimes 'unsigned long',
and sometimes 'EMACS_UINT', to represent these timestamps. This
change causes it to use 'Time' uniformly, as that's what X uses.
This makes the code easier to follow, and makes it easier to catch
integer overflow bugs such as Bug#8664.
* frame.c (Fmouse_position, Fmouse_pixel_position):
Use Time, not unsigned long, for user-interface timestamps.
* keyboard.c (last_event_timestamp, kbd_buffer_get_event): Likewise.
(button_down_time, make_lispy_position, make_lispy_movement): Likewise.
* keyboard.h (last_event_timestamp): Likewise.
* menu.c (Fx_popup_menu) [!HAVE_X_WINDOWS]: Likewise.
* menu.h (xmenu_show): Likewise.
* term.c (term_mouse_position): Likewise.
* termhooks.h (struct input_event.timestamp): Likewise.
(struct terminal.mouse_position_hook): Likewise.
* xmenu.c (create_and_show_popup_menu, xmenu_show): Likewise.
* xterm.c (XTmouse_position, x_scroll_bar_report_motion): Likewise.
* systime.h (Time): New decl. Pull it in from <X11/X.h> if
HAVE_X_WINDOWS, otherwise define it as unsigned long, which is
what it was before.
* menu.h, termhooks.h: Include "systime.h", for Time.
2011-05-12 20:23:33 +00:00
|
|
|
|
typedef unsigned long Time;
|
2011-05-20 06:37:13 +00:00
|
|
|
|
# endif
|
Be more systematic about user-interface timestamps.
Before, the code sometimes used 'Time', sometimes 'unsigned long',
and sometimes 'EMACS_UINT', to represent these timestamps. This
change causes it to use 'Time' uniformly, as that's what X uses.
This makes the code easier to follow, and makes it easier to catch
integer overflow bugs such as Bug#8664.
* frame.c (Fmouse_position, Fmouse_pixel_position):
Use Time, not unsigned long, for user-interface timestamps.
* keyboard.c (last_event_timestamp, kbd_buffer_get_event): Likewise.
(button_down_time, make_lispy_position, make_lispy_movement): Likewise.
* keyboard.h (last_event_timestamp): Likewise.
* menu.c (Fx_popup_menu) [!HAVE_X_WINDOWS]: Likewise.
* menu.h (xmenu_show): Likewise.
* term.c (term_mouse_position): Likewise.
* termhooks.h (struct input_event.timestamp): Likewise.
(struct terminal.mouse_position_hook): Likewise.
* xmenu.c (create_and_show_popup_menu, xmenu_show): Likewise.
* xterm.c (XTmouse_position, x_scroll_bar_report_motion): Likewise.
* systime.h (Time): New decl. Pull it in from <X11/X.h> if
HAVE_X_WINDOWS, otherwise define it as unsigned long, which is
what it was before.
* menu.h, termhooks.h: Include "systime.h", for Time.
2011-05-12 20:23:33 +00:00
|
|
|
|
#endif
|
|
|
|
|
|
1994-05-26 18:47:37 +00:00
|
|
|
|
/* On some configurations (hpux8.0, X11R4), sys/time.h and X11/Xos.h
|
|
|
|
|
disagree about the name of the guard symbol. */
|
1994-05-26 22:15:23 +00:00
|
|
|
|
#ifdef HPUX
|
1994-05-26 18:47:37 +00:00
|
|
|
|
#ifdef _STRUCT_TIMEVAL
|
|
|
|
|
#ifndef __TIMEVAL__
|
|
|
|
|
#define __TIMEVAL__
|
|
|
|
|
#endif
|
|
|
|
|
#endif
|
1994-05-26 22:15:23 +00:00
|
|
|
|
#endif
|
1992-08-12 15:19:32 +00:00
|
|
|
|
|
2012-06-22 21:17:42 +00:00
|
|
|
|
/* The type to use to represent temporal intervals. It can be passed
|
|
|
|
|
as the timeout argument to the pselect system call. */
|
|
|
|
|
#define EMACS_TIME struct timespec
|
1992-08-12 15:16:36 +00:00
|
|
|
|
|
2012-06-22 21:17:42 +00:00
|
|
|
|
/* Resolution of EMACS_TIME time stamps (in units per second), and log
|
|
|
|
|
base 10 of the resolution. The log must be a positive integer. */
|
|
|
|
|
#define EMACS_TIME_RESOLUTION 1000000000
|
|
|
|
|
#define LOG10_EMACS_TIME_RESOLUTION 9
|
|
|
|
|
|
|
|
|
|
/* EMACS_SECS (TIME) is an rvalue for the seconds component of TIME.
|
|
|
|
|
EMACS_SECS_ADDR (time) is the address of the seconds component.
|
1992-08-12 15:16:36 +00:00
|
|
|
|
EMACS_SET_SECS (TIME, SECONDS) sets that to SECONDS.
|
|
|
|
|
|
2012-06-22 21:17:42 +00:00
|
|
|
|
EMACS_NSECS (TIME) is an rvalue for the nanoseconds component of TIME.
|
|
|
|
|
EMACS_SET_NSECS (TIME, NANOSECONDS) sets that to NANOSECONDS.
|
1992-08-12 15:16:36 +00:00
|
|
|
|
|
2012-06-22 21:17:42 +00:00
|
|
|
|
EMACS_SET_SECS_NSECS (TIME, SECS, NSECS) sets both components of TIME. */
|
|
|
|
|
#define EMACS_SECS(time) ((time).tv_sec + 0)
|
|
|
|
|
#define EMACS_NSECS(time) ((time).tv_nsec + 0)
|
|
|
|
|
#define EMACS_SECS_ADDR(time) (&(time).tv_sec)
|
|
|
|
|
#define EMACS_SET_SECS(time, seconds) ((time).tv_sec = (seconds))
|
|
|
|
|
#define EMACS_SET_NSECS(time, ns) ((time).tv_nsec = (ns))
|
|
|
|
|
#define EMACS_SET_SECS_NSECS(time, s, ns) \
|
|
|
|
|
((void) (EMACS_SET_SECS (time, s), EMACS_SET_NSECS (time, ns)))
|
1992-08-12 15:16:36 +00:00
|
|
|
|
|
2012-06-22 21:17:42 +00:00
|
|
|
|
/* Convenience macros for older code that counts microseconds. */
|
|
|
|
|
#define EMACS_SET_USECS(time, us) ((void) EMACS_SET_NSECS (time, (us) * 1000))
|
|
|
|
|
#define EMACS_SET_SECS_USECS(time, secs, usecs) \
|
|
|
|
|
(EMACS_SET_SECS (time, secs), EMACS_SET_USECS (time, usecs))
|
1992-08-12 15:16:36 +00:00
|
|
|
|
|
2012-06-22 21:17:42 +00:00
|
|
|
|
/* Set TIME to an invalid time stamp. */
|
|
|
|
|
#define EMACS_SET_INVALID_TIME(time) EMACS_SET_SECS_NSECS(time, 0, -1)
|
1992-08-12 15:16:36 +00:00
|
|
|
|
|
2012-06-22 21:17:42 +00:00
|
|
|
|
/* Set TIME to the current system time. */
|
|
|
|
|
#define EMACS_GET_TIME(time) gettime (&(time))
|
1992-08-12 15:16:36 +00:00
|
|
|
|
|
2012-06-22 21:17:42 +00:00
|
|
|
|
/* Put into DEST the result of adding SRC1 to SRC2, or of subtracting
|
|
|
|
|
SRC2 from SRC1. On overflow, store an extremal value. */
|
|
|
|
|
#define EMACS_ADD_TIME(dest, src1, src2) ((dest) = timespec_add (src1, src2))
|
|
|
|
|
#define EMACS_SUB_TIME(dest, src1, src2) ((dest) = timespec_sub (src1, src2))
|
1992-08-12 15:16:36 +00:00
|
|
|
|
|
2012-06-22 21:17:42 +00:00
|
|
|
|
/* Return the sign of the valid time stamp TIME, either -1, 0, or 1. */
|
|
|
|
|
#define EMACS_TIME_SIGN(time) timespec_sign (time)
|
1992-08-12 15:16:36 +00:00
|
|
|
|
|
2012-06-22 21:17:42 +00:00
|
|
|
|
/* Return 1 if TIME is a valid time stamp. */
|
|
|
|
|
#define EMACS_TIME_VALID_P(time) (0 <= (time).tv_nsec)
|
1993-03-20 22:58:21 +00:00
|
|
|
|
|
2012-06-22 21:17:42 +00:00
|
|
|
|
/* Convert the double D to the greatest EMACS_TIME not greater than D.
|
|
|
|
|
On overflow, return an extremal value. Return the minimum
|
|
|
|
|
EMACS_TIME if D is not a number. */
|
|
|
|
|
#define EMACS_TIME_FROM_DOUBLE(d) dtotimespec (d)
|
1992-08-12 15:16:36 +00:00
|
|
|
|
|
2012-06-22 21:17:42 +00:00
|
|
|
|
/* Convert the Emacs time T to an approximate double value D. */
|
|
|
|
|
#define EMACS_TIME_TO_DOUBLE(t) timespectod (t)
|
1992-08-12 15:16:36 +00:00
|
|
|
|
|
2012-06-22 21:17:42 +00:00
|
|
|
|
/* defined in sysdep.c */
|
|
|
|
|
extern int set_file_times (int, const char *, EMACS_TIME, EMACS_TIME);
|
|
|
|
|
extern struct timeval make_timeval (EMACS_TIME);
|
1999-11-28 20:11:56 +00:00
|
|
|
|
|
2005-09-27 18:48:59 +00:00
|
|
|
|
/* defined in keyboard.c */
|
2010-07-02 09:26:33 +00:00
|
|
|
|
extern void set_waiting_for_input (EMACS_TIME *);
|
2005-09-27 18:48:59 +00:00
|
|
|
|
|
2005-09-30 22:38:16 +00:00
|
|
|
|
/* When lisp.h is not included Lisp_Object is not defined (this can
|
|
|
|
|
happen when this files is used outside the src directory).
|
|
|
|
|
Use GCPRO1 to determine if lisp.h was included. */
|
|
|
|
|
#ifdef GCPRO1
|
2012-06-22 21:17:42 +00:00
|
|
|
|
/* defined in editfns.c */
|
|
|
|
|
extern Lisp_Object make_lisp_time (EMACS_TIME);
|
|
|
|
|
extern int decode_time_components (Lisp_Object, Lisp_Object, Lisp_Object,
|
|
|
|
|
Lisp_Object, EMACS_TIME *, int *);
|
|
|
|
|
extern EMACS_TIME lisp_time_argument (Lisp_Object, int *);
|
2005-09-30 22:38:16 +00:00
|
|
|
|
#endif
|
|
|
|
|
|
1999-11-28 20:11:56 +00:00
|
|
|
|
/* Compare times T1 and T2 for equality, inequality etc. */
|
|
|
|
|
|
2012-06-22 21:17:42 +00:00
|
|
|
|
#define EMACS_TIME_EQ(T1, T2) (timespec_cmp (T1, T2) == 0)
|
|
|
|
|
#define EMACS_TIME_NE(T1, T2) (timespec_cmp (T1, T2) != 0)
|
|
|
|
|
#define EMACS_TIME_GT(T1, T2) (timespec_cmp (T1, T2) > 0)
|
|
|
|
|
#define EMACS_TIME_GE(T1, T2) (timespec_cmp (T1, T2) >= 0)
|
|
|
|
|
#define EMACS_TIME_LT(T1, T2) (timespec_cmp (T1, T2) < 0)
|
|
|
|
|
#define EMACS_TIME_LE(T1, T2) (timespec_cmp (T1, T2) <= 0)
|
1999-11-28 20:11:56 +00:00
|
|
|
|
|
2000-06-11 17:37:16 +00:00
|
|
|
|
#endif /* EMACS_SYSTIME_H */
|