mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-01-08 12:40:49 -08:00
Fix compilation warnings due to prototype of thread_select
* 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'.
This commit is contained in:
parent
ae490069ea
commit
7399f53a37
4 changed files with 5 additions and 5 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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,
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue