]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix compilation warnings due to prototype of thread_select
authorEli Zaretskii <eliz@gnu.org>
Fri, 9 Dec 2016 16:23:04 +0000 (18:23 +0200)
committerEli Zaretskii <eliz@gnu.org>
Fri, 9 Dec 2016 16:23:04 +0000 (18:23 +0200)
* src/thread.h <int select_func>: Make the 5th and 6th arguments
be 'const'.
* src/process.c [WINDOWSNT]:
* src/w32proc.c: Make the 5th and 6th argument to sys_select be
'const'.

src/process.c
src/thread.h
src/w32.c
src/w32proc.c

index 7d3cf19d57f72837b36deb7eab4f119618753beb..a60814b2386858dd9a7549ffb0b19c6f18ea9930 100644 (file)
@@ -138,7 +138,7 @@ static struct rlimit nofile_limit;
 
 #ifdef WINDOWSNT
 extern int sys_select (int, fd_set *, fd_set *, fd_set *,
-                       struct timespec *, sigset_t *);
+                       const struct timespec *, const sigset_t *);
 #endif
 
 /* Work around GCC 4.3.0 bug with strict overflow checking; see
index 644480075315500df0392f66f300cccb5e5b3ff0..a9de754d6b43fb9aec381504a4ef48fb72ddbf57 100644 (file)
@@ -226,7 +226,7 @@ extern void init_threads (void);
 extern void syms_of_threads (void);
 
 typedef int select_func (int, fd_set *, fd_set *, fd_set *,
-                        struct timespec *, sigset_t *);
+                        const struct timespec *, const sigset_t *);
 
 int thread_select  (select_func *func, int max_fds, fd_set *rfds,
                    fd_set *wfds, fd_set *efds, struct timespec *timeout,
index 7a80275a7c8514916c387cc065320c5bbe95302f..c6fc7ef8567291f4fbad975c31e2094d72e96ca9 100644 (file)
--- a/src/w32.c
+++ b/src/w32.c
@@ -272,7 +272,7 @@ static BOOL WINAPI revert_to_self (void);
 static int sys_access (const char *, int);
 extern void *e_malloc (size_t);
 extern int sys_select (int, SELECT_TYPE *, SELECT_TYPE *, SELECT_TYPE *,
-                      struct timespec *, sigset_t *);
+                      const struct timespec *, const sigset_t *);
 extern int sys_dup (int);
 
 \f
index 3ff52c37fbda977b010f94d0bcac7066baf05b8c..6f3a6e0efca3aa22c067c0e0bb02e34dbc8240df 100644 (file)
@@ -72,7 +72,7 @@ extern BOOL g_b_init_compare_string_w;
 extern BOOL g_b_init_debug_break_process;
 
 int sys_select (int, SELECT_TYPE *, SELECT_TYPE *, SELECT_TYPE *,
-               struct timespec *, sigset_t *);
+               const struct timespec *, const sigset_t *);
 
 /* Signal handlers...SIG_DFL == 0 so this is initialized correctly.  */
 static signal_handler sig_handlers[NSIG];
@@ -2096,7 +2096,7 @@ extern int proc_buffered_char[];
 
 int
 sys_select (int nfds, SELECT_TYPE *rfds, SELECT_TYPE *wfds, SELECT_TYPE *efds,
-           struct timespec *timeout, sigset_t *ignored)
+           const struct timespec *timeout, const sigset_t *ignored)
 {
   SELECT_TYPE orfds, owfds;
   DWORD timeout_ms, start_time;