changeset 109130:cd13b432f239

Fix more prototypes. * atimer.c (start_atimer): Use EMACS_TIME, not struct timeval. * sysdep.c (set_file_times): Use EMACS_TIME, not struct timeval. * xgselect.c (xg_select): Use SELECT_TYPE, EMACS_TIME.
author Juanma Barranquero <lekktu@gmail.com>
date Sun, 04 Jul 2010 15:41:55 +0200
parents 907fcf8bd2ef
children 18f8e88d3829
files src/ChangeLog src/atimer.c src/sysdep.c src/xgselect.c
diffstat 4 files changed, 8 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/src/ChangeLog	Sun Jul 04 13:51:28 2010 +0200
+++ b/src/ChangeLog	Sun Jul 04 15:41:55 2010 +0200
@@ -2,11 +2,14 @@
 
 	Fix prototypes.
 
+	* atimer.c (start_atimer): Use EMACS_TIME, not struct timeval.
 	* dired.c (file_name_completion_stat): Use DIRENTRY, not struct dirent.
 	* fileio.c (read_non_regular, read_non_regular_quit): Pass Lisp_Object,
 	as required by internal_condition_case_1.
 	* regex.c (bcmp_translate): Use RE_TRANSLATE_TYPE, not Lisp_Object.
 	(analyse_first): Fix "const const".
+	* sysdep.c (set_file_times): Use EMACS_TIME, not struct timeval.
+	* xgselect.c (xg_select): Use SELECT_TYPE, EMACS_TIME.
 
 2010-07-04  Dan Nicolaescu  <dann@ics.uci.edu>
 
--- a/src/atimer.c	Sun Jul 04 13:51:28 2010 +0200
+++ b/src/atimer.c	Sun Jul 04 15:41:55 2010 +0200
@@ -90,7 +90,8 @@
    to cancel_atimer; don't free it yourself.  */
 
 struct atimer *
-start_atimer (enum atimer_type type, struct timeval time, atimer_callback fn, void *client_data)
+start_atimer (enum atimer_type type, EMACS_TIME time, atimer_callback fn,
+	      void *client_data)
 {
   struct atimer *t;
 
--- a/src/sysdep.c	Sun Jul 04 13:51:28 2010 +0200
+++ b/src/sysdep.c	Sun Jul 04 15:41:55 2010 +0200
@@ -2579,7 +2579,7 @@
 
 
 int
-set_file_times (const char *filename, struct timeval atime, struct timeval mtime)
+set_file_times (const char *filename, EMACS_TIME atime, EMACS_TIME mtime)
 {
 #ifdef HAVE_UTIMES
   struct timeval tv[2];
--- a/src/xgselect.c	Sun Jul 04 13:51:28 2010 +0200
+++ b/src/xgselect.c	Sun Jul 04 15:41:55 2010 +0200
@@ -29,7 +29,8 @@
 static int gfds_size;
 
 int
-xg_select (int max_fds, fd_set *rfds, fd_set *wfds, fd_set *efds, struct timeval *timeout)
+xg_select (int max_fds, SELECT_TYPE *rfds, SELECT_TYPE *wfds, SELECT_TYPE *efds,
+	   EMACS_TIME *timeout)
 {
   SELECT_TYPE all_rfds, all_wfds;
   EMACS_TIME tmo, *tmop = timeout;