* lisp/tmm.el (tmm-prompt): Use map-keymap.
[emacs.git] / src / w32proc.c
blobe2187d5242550e0be05c6123d61e9f0b5fd9bde8
1 /* Process support for GNU Emacs on the Microsoft Windows API.
2 Copyright (C) 1992, 1995, 1999-2012 Free Software Foundation, Inc.
4 This file is part of GNU Emacs.
6 GNU Emacs is free software: you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation, either version 3 of the License, or
9 (at your option) any later version.
11 GNU Emacs is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
20 Drew Bliss Oct 14, 1993
21 Adapted from alarm.c by Tim Fleehart
24 #include <stdio.h>
25 #include <stdlib.h>
26 #include <errno.h>
27 #include <ctype.h>
28 #include <io.h>
29 #include <fcntl.h>
30 #include <signal.h>
31 #include <sys/file.h>
33 /* must include CRT headers *before* config.h */
34 #include <config.h>
36 #undef signal
37 #undef wait
38 #undef spawnve
39 #undef select
40 #undef kill
42 #include <windows.h>
43 #ifdef __GNUC__
44 /* This definition is missing from mingw32 headers. */
45 extern BOOL WINAPI IsValidLocale (LCID, DWORD);
46 #endif
48 #ifdef HAVE_LANGINFO_CODESET
49 #include <nl_types.h>
50 #include <langinfo.h>
51 #endif
53 #include "lisp.h"
54 #include "w32.h"
55 #include "w32common.h"
56 #include "w32heap.h"
57 #include "systime.h"
58 #include "syswait.h"
59 #include "process.h"
60 #include "syssignal.h"
61 #include "w32term.h"
62 #include "dispextern.h" /* for xstrcasecmp */
63 #include "coding.h"
65 #define RVA_TO_PTR(var,section,filedata) \
66 ((void *)((section)->PointerToRawData \
67 + ((DWORD_PTR)(var) - (section)->VirtualAddress) \
68 + (filedata).file_base))
70 Lisp_Object Qhigh, Qlow;
72 /* Signal handlers...SIG_DFL == 0 so this is initialized correctly. */
73 static signal_handler sig_handlers[NSIG];
75 static sigset_t sig_mask;
77 static CRITICAL_SECTION crit_sig;
79 /* Improve on the CRT 'signal' implementation so that we could record
80 the SIGCHLD handler and fake interval timers. */
81 signal_handler
82 sys_signal (int sig, signal_handler handler)
84 signal_handler old;
86 /* SIGCHLD is needed for supporting subprocesses, see sys_kill
87 below. SIGALRM and SIGPROF are used by setitimer. All the
88 others are the only ones supported by the MS runtime. */
89 if (!(sig == SIGCHLD || sig == SIGSEGV || sig == SIGILL
90 || sig == SIGFPE || sig == SIGABRT || sig == SIGTERM
91 || sig == SIGALRM || sig == SIGPROF))
93 errno = EINVAL;
94 return SIG_ERR;
96 old = sig_handlers[sig];
97 /* SIGABRT is treated specially because w32.c installs term_ntproc
98 as its handler, so we don't want to override that afterwards.
99 Aborting Emacs works specially anyway: either by calling
100 emacs_abort directly or through terminate_due_to_signal, which
101 calls emacs_abort through emacs_raise. */
102 if (!(sig == SIGABRT && old == term_ntproc))
104 sig_handlers[sig] = handler;
105 if (!(sig == SIGCHLD || sig == SIGALRM || sig == SIGPROF))
106 signal (sig, handler);
108 return old;
111 /* Emulate sigaction. */
113 sigaction (int sig, const struct sigaction *act, struct sigaction *oact)
115 signal_handler old = SIG_DFL;
116 int retval = 0;
118 if (act)
119 old = sys_signal (sig, act->sa_handler);
120 else if (oact)
121 old = sig_handlers[sig];
123 if (old == SIG_ERR)
125 errno = EINVAL;
126 retval = -1;
128 if (oact)
130 oact->sa_handler = old;
131 oact->sa_flags = 0;
132 oact->sa_mask = empty_mask;
134 return retval;
137 /* Emulate signal sets and blocking of signals used by timers. */
140 sigemptyset (sigset_t *set)
142 *set = 0;
143 return 0;
147 sigaddset (sigset_t *set, int signo)
149 if (!set)
151 errno = EINVAL;
152 return -1;
154 if (signo < 0 || signo >= NSIG)
156 errno = EINVAL;
157 return -1;
160 *set |= (1U << signo);
162 return 0;
166 sigfillset (sigset_t *set)
168 if (!set)
170 errno = EINVAL;
171 return -1;
174 *set = 0xFFFFFFFF;
175 return 0;
179 sigprocmask (int how, const sigset_t *set, sigset_t *oset)
181 if (!(how == SIG_BLOCK || how == SIG_UNBLOCK || how == SIG_SETMASK))
183 errno = EINVAL;
184 return -1;
187 if (oset)
188 *oset = sig_mask;
190 if (!set)
191 return 0;
193 switch (how)
195 case SIG_BLOCK:
196 sig_mask |= *set;
197 break;
198 case SIG_SETMASK:
199 sig_mask = *set;
200 break;
201 case SIG_UNBLOCK:
202 /* FIXME: Catch signals that are blocked and reissue them when
203 they are unblocked. Important for SIGALRM and SIGPROF only. */
204 sig_mask &= ~(*set);
205 break;
208 return 0;
212 pthread_sigmask (int how, const sigset_t *set, sigset_t *oset)
214 if (sigprocmask (how, set, oset) == -1)
215 return EINVAL;
216 return 0;
220 sigismember (const sigset_t *set, int signo)
222 if (signo < 0 || signo >= NSIG)
224 errno = EINVAL;
225 return -1;
227 if (signo > sizeof (*set) * BITS_PER_CHAR)
228 emacs_abort ();
230 return (*set & (1U << signo)) != 0;
234 setpgrp (int pid, int gid)
236 return 0;
239 /* Emulations of interval timers.
241 Limitations: only ITIMER_REAL and ITIMER_PROF are supported.
243 Implementation: a separate thread is started for each timer type,
244 the thread calls the appropriate signal handler when the timer
245 expires, after stopping the thread which installed the timer. */
247 struct itimer_data {
248 volatile ULONGLONG expire;
249 volatile ULONGLONG reload;
250 volatile int terminate;
251 int type;
252 HANDLE caller_thread;
253 HANDLE timer_thread;
256 static ULONGLONG ticks_now;
257 static struct itimer_data real_itimer, prof_itimer;
258 static ULONGLONG clocks_min;
259 /* If non-zero, itimers are disabled. Used during shutdown, when we
260 delete the critical sections used by the timer threads. */
261 static int disable_itimers;
263 static CRITICAL_SECTION crit_real, crit_prof;
265 /* GetThreadTimes is not available on Windows 9X and possibly also on 2K. */
266 typedef BOOL (WINAPI *GetThreadTimes_Proc) (
267 HANDLE hThread,
268 LPFILETIME lpCreationTime,
269 LPFILETIME lpExitTime,
270 LPFILETIME lpKernelTime,
271 LPFILETIME lpUserTime);
273 static GetThreadTimes_Proc s_pfn_Get_Thread_Times;
275 /* Return a suitable time value, in 1-ms units, for THREAD, a handle
276 to a thread. If THREAD is NULL or an invalid handle, return the
277 current wall-clock time since January 1, 1601 (UTC). Otherwise,
278 return the sum of kernel and user times used by THREAD since it was
279 created, plus its creation time. */
280 static ULONGLONG
281 w32_get_timer_time (HANDLE thread)
283 ULONGLONG retval;
284 int use_system_time = 1;
286 if (thread && thread != INVALID_HANDLE_VALUE
287 && s_pfn_Get_Thread_Times != NULL)
289 FILETIME creation_ftime, exit_ftime, kernel_ftime, user_ftime;
290 ULARGE_INTEGER temp_creation, temp_kernel, temp_user;
292 if (s_pfn_Get_Thread_Times (thread, &creation_ftime, &exit_ftime,
293 &kernel_ftime, &user_ftime))
295 use_system_time = 0;
296 temp_creation.LowPart = creation_ftime.dwLowDateTime;
297 temp_creation.HighPart = creation_ftime.dwHighDateTime;
298 temp_kernel.LowPart = kernel_ftime.dwLowDateTime;
299 temp_kernel.HighPart = kernel_ftime.dwHighDateTime;
300 temp_user.LowPart = user_ftime.dwLowDateTime;
301 temp_user.HighPart = user_ftime.dwHighDateTime;
302 retval =
303 temp_creation.QuadPart / 10000 + temp_kernel.QuadPart / 10000
304 + temp_user.QuadPart / 10000;
306 else
307 DebPrint (("GetThreadTimes failed with error code %lu\n",
308 GetLastError ()));
311 if (use_system_time)
313 FILETIME current_ftime;
314 ULARGE_INTEGER temp;
316 GetSystemTimeAsFileTime (&current_ftime);
318 temp.LowPart = current_ftime.dwLowDateTime;
319 temp.HighPart = current_ftime.dwHighDateTime;
321 retval = temp.QuadPart / 10000;
324 return retval;
327 #define MAX_SINGLE_SLEEP 30
329 /* Thread function for a timer thread. */
330 static DWORD WINAPI
331 timer_loop (LPVOID arg)
333 struct itimer_data *itimer = (struct itimer_data *)arg;
334 int which = itimer->type;
335 int sig = (which == ITIMER_REAL) ? SIGALRM : SIGPROF;
336 CRITICAL_SECTION *crit = (which == ITIMER_REAL) ? &crit_real : &crit_prof;
337 const DWORD max_sleep = MAX_SINGLE_SLEEP * 1000 / CLOCKS_PER_SEC;
338 HANDLE hth = (which == ITIMER_REAL) ? NULL : itimer->caller_thread;
340 while (1)
342 DWORD sleep_time;
343 signal_handler handler;
344 ULONGLONG now, expire, reload;
346 /* Load new values if requested by setitimer. */
347 EnterCriticalSection (crit);
348 expire = itimer->expire;
349 reload = itimer->reload;
350 LeaveCriticalSection (crit);
351 if (itimer->terminate)
352 return 0;
354 if (expire == 0)
356 /* We are idle. */
357 Sleep (max_sleep);
358 continue;
361 if (expire > (now = w32_get_timer_time (hth)))
362 sleep_time = expire - now;
363 else
364 sleep_time = 0;
365 /* Don't sleep too long at a time, to be able to see the
366 termination flag without too long a delay. */
367 while (sleep_time > max_sleep)
369 if (itimer->terminate)
370 return 0;
371 Sleep (max_sleep);
372 EnterCriticalSection (crit);
373 expire = itimer->expire;
374 LeaveCriticalSection (crit);
375 sleep_time =
376 (expire > (now = w32_get_timer_time (hth))) ? expire - now : 0;
378 if (itimer->terminate)
379 return 0;
380 if (sleep_time > 0)
382 Sleep (sleep_time * 1000 / CLOCKS_PER_SEC);
383 /* Always sleep past the expiration time, to make sure we
384 never call the handler _before_ the expiration time,
385 always slightly after it. Sleep(5) makes sure we don't
386 hog the CPU by calling 'w32_get_timer_time' with high
387 frequency, and also let other threads work. */
388 while (w32_get_timer_time (hth) < expire)
389 Sleep (5);
392 EnterCriticalSection (crit);
393 expire = itimer->expire;
394 LeaveCriticalSection (crit);
395 if (expire == 0)
396 continue;
398 /* Time's up. */
399 handler = sig_handlers[sig];
400 if (!(handler == SIG_DFL || handler == SIG_IGN || handler == SIG_ERR)
401 /* FIXME: Don't ignore masked signals. Instead, record that
402 they happened and reissue them when the signal is
403 unblocked. */
404 && !sigismember (&sig_mask, sig)
405 /* Simulate masking of SIGALRM and SIGPROF when processing
406 fatal signals. */
407 && !fatal_error_in_progress
408 && itimer->caller_thread)
410 /* Simulate a signal delivered to the thread which installed
411 the timer, by suspending that thread while the handler
412 runs. */
413 DWORD result = SuspendThread (itimer->caller_thread);
415 if (result == (DWORD)-1)
416 return 2;
418 handler (sig);
419 ResumeThread (itimer->caller_thread);
422 /* Update expiration time and loop. */
423 EnterCriticalSection (crit);
424 expire = itimer->expire;
425 if (expire == 0)
427 LeaveCriticalSection (crit);
428 continue;
430 reload = itimer->reload;
431 if (reload > 0)
433 now = w32_get_timer_time (hth);
434 if (expire <= now)
436 ULONGLONG lag = now - expire;
438 /* If we missed some opportunities (presumably while
439 sleeping or while the signal handler ran), skip
440 them. */
441 if (lag > reload)
442 expire = now - (lag % reload);
444 expire += reload;
447 else
448 expire = 0; /* become idle */
449 itimer->expire = expire;
450 LeaveCriticalSection (crit);
452 return 0;
455 static void
456 stop_timer_thread (int which)
458 struct itimer_data *itimer =
459 (which == ITIMER_REAL) ? &real_itimer : &prof_itimer;
460 int i;
461 DWORD err, exit_code = 255;
462 BOOL status;
464 /* Signal the thread that it should terminate. */
465 itimer->terminate = 1;
467 if (itimer->timer_thread == NULL)
468 return;
470 /* Wait for the timer thread to terminate voluntarily, then kill it
471 if it doesn't. This loop waits twice more than the maximum
472 amount of time a timer thread sleeps, see above. */
473 for (i = 0; i < MAX_SINGLE_SLEEP / 5; i++)
475 if (!((status = GetExitCodeThread (itimer->timer_thread, &exit_code))
476 && exit_code == STILL_ACTIVE))
477 break;
478 Sleep (10);
480 if ((status == FALSE && (err = GetLastError ()) == ERROR_INVALID_HANDLE)
481 || exit_code == STILL_ACTIVE)
483 if (!(status == FALSE && err == ERROR_INVALID_HANDLE))
484 TerminateThread (itimer->timer_thread, 0);
487 /* Clean up. */
488 CloseHandle (itimer->timer_thread);
489 itimer->timer_thread = NULL;
490 if (itimer->caller_thread)
492 CloseHandle (itimer->caller_thread);
493 itimer->caller_thread = NULL;
497 /* This is called at shutdown time from term_ntproc. */
498 void
499 term_timers (void)
501 if (real_itimer.timer_thread)
502 stop_timer_thread (ITIMER_REAL);
503 if (prof_itimer.timer_thread)
504 stop_timer_thread (ITIMER_PROF);
506 /* We are going to delete the critical sections, so timers cannot
507 work after this. */
508 disable_itimers = 1;
510 DeleteCriticalSection (&crit_real);
511 DeleteCriticalSection (&crit_prof);
512 DeleteCriticalSection (&crit_sig);
515 /* This is called at initialization time from init_ntproc. */
516 void
517 init_timers (void)
519 /* GetThreadTimes is not avaiulable on all versions of Windows, so
520 need to probe for its availability dynamically, and call it
521 through a pointer. */
522 s_pfn_Get_Thread_Times = NULL; /* in case dumped Emacs comes with a value */
523 if (os_subtype != OS_9X)
524 s_pfn_Get_Thread_Times =
525 (GetThreadTimes_Proc)GetProcAddress (GetModuleHandle ("kernel32.dll"),
526 "GetThreadTimes");
528 /* Make sure we start with zeroed out itimer structures, since
529 dumping may have left there traces of threads long dead. */
530 memset (&real_itimer, 0, sizeof real_itimer);
531 memset (&prof_itimer, 0, sizeof prof_itimer);
533 InitializeCriticalSection (&crit_real);
534 InitializeCriticalSection (&crit_prof);
535 InitializeCriticalSection (&crit_sig);
537 disable_itimers = 0;
540 static int
541 start_timer_thread (int which)
543 DWORD exit_code;
544 struct itimer_data *itimer =
545 (which == ITIMER_REAL) ? &real_itimer : &prof_itimer;
547 if (itimer->timer_thread
548 && GetExitCodeThread (itimer->timer_thread, &exit_code)
549 && exit_code == STILL_ACTIVE)
550 return 0;
552 /* Start a new thread. */
553 itimer->terminate = 0;
554 itimer->type = which;
555 /* Request that no more than 64KB of stack be reserved for this
556 thread, to avoid reserving too much memory, which would get in
557 the way of threads we start to wait for subprocesses. See also
558 new_child below. */
559 itimer->timer_thread = CreateThread (NULL, 64 * 1024, timer_loop,
560 (void *)itimer, 0x00010000, NULL);
562 if (!itimer->timer_thread)
564 CloseHandle (itimer->caller_thread);
565 itimer->caller_thread = NULL;
566 errno = EAGAIN;
567 return -1;
570 /* This is needed to make sure that the timer thread running for
571 profiling gets CPU as soon as the Sleep call terminates. */
572 if (which == ITIMER_PROF)
573 SetThreadPriority (itimer->caller_thread, THREAD_PRIORITY_TIME_CRITICAL);
575 return 0;
578 /* Most of the code of getitimer and setitimer (but not of their
579 subroutines) was shamelessly stolen from itimer.c in the DJGPP
580 library, see www.delorie.com/djgpp. */
582 getitimer (int which, struct itimerval *value)
584 volatile ULONGLONG *t_expire;
585 volatile ULONGLONG *t_reload;
586 ULONGLONG expire, reload;
587 __int64 usecs;
588 CRITICAL_SECTION *crit;
589 struct itimer_data *itimer;
591 if (disable_itimers)
592 return -1;
594 if (!value)
596 errno = EFAULT;
597 return -1;
600 if (which != ITIMER_REAL && which != ITIMER_PROF)
602 errno = EINVAL;
603 return -1;
606 itimer = (which == ITIMER_REAL) ? &real_itimer : &prof_itimer;
608 if (!DuplicateHandle (GetCurrentProcess (), GetCurrentThread (),
609 GetCurrentProcess (), &itimer->caller_thread, 0,
610 FALSE, DUPLICATE_SAME_ACCESS))
612 errno = ESRCH;
613 return -1;
616 ticks_now = w32_get_timer_time ((which == ITIMER_REAL)
617 ? NULL
618 : itimer->caller_thread);
620 t_expire = &itimer->expire;
621 t_reload = &itimer->reload;
622 crit = (which == ITIMER_REAL) ? &crit_real : &crit_prof;
624 EnterCriticalSection (crit);
625 reload = *t_reload;
626 expire = *t_expire;
627 LeaveCriticalSection (crit);
629 if (expire)
630 expire -= ticks_now;
632 value->it_value.tv_sec = expire / CLOCKS_PER_SEC;
633 usecs = (expire % CLOCKS_PER_SEC) * (__int64)1000000 / CLOCKS_PER_SEC;
634 value->it_value.tv_usec = usecs;
635 value->it_interval.tv_sec = reload / CLOCKS_PER_SEC;
636 usecs = (reload % CLOCKS_PER_SEC) * (__int64)1000000 / CLOCKS_PER_SEC;
637 value->it_interval.tv_usec= usecs;
639 return 0;
643 setitimer(int which, struct itimerval *value, struct itimerval *ovalue)
645 volatile ULONGLONG *t_expire, *t_reload;
646 ULONGLONG expire, reload, expire_old, reload_old;
647 __int64 usecs;
648 CRITICAL_SECTION *crit;
649 struct itimerval tem, *ptem;
651 if (disable_itimers)
652 return -1;
654 /* Posix systems expect timer values smaller than the resolution of
655 the system clock be rounded up to the clock resolution. First
656 time we are called, measure the clock tick resolution. */
657 if (!clocks_min)
659 ULONGLONG t1, t2;
661 for (t1 = w32_get_timer_time (NULL);
662 (t2 = w32_get_timer_time (NULL)) == t1; )
664 clocks_min = t2 - t1;
667 if (ovalue)
668 ptem = ovalue;
669 else
670 ptem = &tem;
672 if (getitimer (which, ptem)) /* also sets ticks_now */
673 return -1; /* errno already set */
675 t_expire =
676 (which == ITIMER_REAL) ? &real_itimer.expire : &prof_itimer.expire;
677 t_reload =
678 (which == ITIMER_REAL) ? &real_itimer.reload : &prof_itimer.reload;
680 crit = (which == ITIMER_REAL) ? &crit_real : &crit_prof;
682 if (!value
683 || (value->it_value.tv_sec == 0 && value->it_value.tv_usec == 0))
685 EnterCriticalSection (crit);
686 /* Disable the timer. */
687 *t_expire = 0;
688 *t_reload = 0;
689 LeaveCriticalSection (crit);
690 return 0;
693 reload = value->it_interval.tv_sec * CLOCKS_PER_SEC;
695 usecs = value->it_interval.tv_usec;
696 if (value->it_interval.tv_sec == 0
697 && usecs && usecs * CLOCKS_PER_SEC < clocks_min * 1000000)
698 reload = clocks_min;
699 else
701 usecs *= CLOCKS_PER_SEC;
702 reload += usecs / 1000000;
705 expire = value->it_value.tv_sec * CLOCKS_PER_SEC;
706 usecs = value->it_value.tv_usec;
707 if (value->it_value.tv_sec == 0
708 && usecs * CLOCKS_PER_SEC < clocks_min * 1000000)
709 expire = clocks_min;
710 else
712 usecs *= CLOCKS_PER_SEC;
713 expire += usecs / 1000000;
716 expire += ticks_now;
718 EnterCriticalSection (crit);
719 expire_old = *t_expire;
720 reload_old = *t_reload;
721 if (!(expire == expire_old && reload == reload_old))
723 *t_reload = reload;
724 *t_expire = expire;
726 LeaveCriticalSection (crit);
728 return start_timer_thread (which);
732 alarm (int seconds)
734 #ifdef HAVE_SETITIMER
735 struct itimerval new_values, old_values;
737 new_values.it_value.tv_sec = seconds;
738 new_values.it_value.tv_usec = 0;
739 new_values.it_interval.tv_sec = new_values.it_interval.tv_usec = 0;
741 if (setitimer (ITIMER_REAL, &new_values, &old_values) < 0)
742 return 0;
743 return old_values.it_value.tv_sec;
744 #else
745 return seconds;
746 #endif
749 /* Defined in <process.h> which conflicts with the local copy */
750 #define _P_NOWAIT 1
752 /* Child process management list. */
753 int child_proc_count = 0;
754 child_process child_procs[ MAX_CHILDREN ];
755 child_process *dead_child = NULL;
757 static DWORD WINAPI reader_thread (void *arg);
759 /* Find an unused process slot. */
760 child_process *
761 new_child (void)
763 child_process *cp;
764 DWORD id;
766 for (cp = child_procs + (child_proc_count-1); cp >= child_procs; cp--)
767 if (!CHILD_ACTIVE (cp))
768 goto Initialize;
769 if (child_proc_count == MAX_CHILDREN)
770 return NULL;
771 cp = &child_procs[child_proc_count++];
773 Initialize:
774 memset (cp, 0, sizeof (*cp));
775 cp->fd = -1;
776 cp->pid = -1;
777 cp->procinfo.hProcess = NULL;
778 cp->status = STATUS_READ_ERROR;
780 /* use manual reset event so that select() will function properly */
781 cp->char_avail = CreateEvent (NULL, TRUE, FALSE, NULL);
782 if (cp->char_avail)
784 cp->char_consumed = CreateEvent (NULL, FALSE, FALSE, NULL);
785 if (cp->char_consumed)
787 /* The 0x00010000 flag is STACK_SIZE_PARAM_IS_A_RESERVATION.
788 It means that the 64K stack we are requesting in the 2nd
789 argument is how much memory should be reserved for the
790 stack. If we don't use this flag, the memory requested
791 by the 2nd argument is the amount actually _committed_,
792 but Windows reserves 8MB of memory for each thread's
793 stack. (The 8MB figure comes from the -stack
794 command-line argument we pass to the linker when building
795 Emacs, but that's because we need a large stack for
796 Emacs's main thread.) Since we request 2GB of reserved
797 memory at startup (see w32heap.c), which is close to the
798 maximum memory available for a 32-bit process on Windows,
799 the 8MB reservation for each thread causes failures in
800 starting subprocesses, because we create a thread running
801 reader_thread for each subprocess. As 8MB of stack is
802 way too much for reader_thread, forcing Windows to
803 reserve less wins the day. */
804 cp->thrd = CreateThread (NULL, 64 * 1024, reader_thread, cp,
805 0x00010000, &id);
806 if (cp->thrd)
807 return cp;
810 delete_child (cp);
811 return NULL;
814 void
815 delete_child (child_process *cp)
817 int i;
819 /* Should not be deleting a child that is still needed. */
820 for (i = 0; i < MAXDESC; i++)
821 if (fd_info[i].cp == cp)
822 emacs_abort ();
824 if (!CHILD_ACTIVE (cp))
825 return;
827 /* reap thread if necessary */
828 if (cp->thrd)
830 DWORD rc;
832 if (GetExitCodeThread (cp->thrd, &rc) && rc == STILL_ACTIVE)
834 /* let the thread exit cleanly if possible */
835 cp->status = STATUS_READ_ERROR;
836 SetEvent (cp->char_consumed);
837 #if 0
838 /* We used to forcibly terminate the thread here, but it
839 is normally unnecessary, and in abnormal cases, the worst that
840 will happen is we have an extra idle thread hanging around
841 waiting for the zombie process. */
842 if (WaitForSingleObject (cp->thrd, 1000) != WAIT_OBJECT_0)
844 DebPrint (("delete_child.WaitForSingleObject (thread) failed "
845 "with %lu for fd %ld\n", GetLastError (), cp->fd));
846 TerminateThread (cp->thrd, 0);
848 #endif
850 CloseHandle (cp->thrd);
851 cp->thrd = NULL;
853 if (cp->char_avail)
855 CloseHandle (cp->char_avail);
856 cp->char_avail = NULL;
858 if (cp->char_consumed)
860 CloseHandle (cp->char_consumed);
861 cp->char_consumed = NULL;
864 /* update child_proc_count (highest numbered slot in use plus one) */
865 if (cp == child_procs + child_proc_count - 1)
867 for (i = child_proc_count-1; i >= 0; i--)
868 if (CHILD_ACTIVE (&child_procs[i]))
870 child_proc_count = i + 1;
871 break;
874 if (i < 0)
875 child_proc_count = 0;
878 /* Find a child by pid. */
879 static child_process *
880 find_child_pid (DWORD pid)
882 child_process *cp;
884 for (cp = child_procs + (child_proc_count-1); cp >= child_procs; cp--)
885 if (CHILD_ACTIVE (cp) && pid == cp->pid)
886 return cp;
887 return NULL;
891 /* Thread proc for child process and socket reader threads. Each thread
892 is normally blocked until woken by select() to check for input by
893 reading one char. When the read completes, char_avail is signaled
894 to wake up the select emulator and the thread blocks itself again. */
895 static DWORD WINAPI
896 reader_thread (void *arg)
898 child_process *cp;
900 /* Our identity */
901 cp = (child_process *)arg;
903 /* We have to wait for the go-ahead before we can start */
904 if (cp == NULL
905 || WaitForSingleObject (cp->char_consumed, INFINITE) != WAIT_OBJECT_0
906 || cp->fd < 0)
907 return 1;
909 for (;;)
911 int rc;
913 if (fd_info[cp->fd].flags & FILE_LISTEN)
914 rc = _sys_wait_accept (cp->fd);
915 else
916 rc = _sys_read_ahead (cp->fd);
918 /* The name char_avail is a misnomer - it really just means the
919 read-ahead has completed, whether successfully or not. */
920 if (!SetEvent (cp->char_avail))
922 DebPrint (("reader_thread.SetEvent failed with %lu for fd %ld\n",
923 GetLastError (), cp->fd));
924 return 1;
927 if (rc == STATUS_READ_ERROR)
928 return 1;
930 /* If the read died, the child has died so let the thread die */
931 if (rc == STATUS_READ_FAILED)
932 break;
934 /* Wait until our input is acknowledged before reading again */
935 if (WaitForSingleObject (cp->char_consumed, INFINITE) != WAIT_OBJECT_0)
937 DebPrint (("reader_thread.WaitForSingleObject failed with "
938 "%lu for fd %ld\n", GetLastError (), cp->fd));
939 break;
942 return 0;
945 /* To avoid Emacs changing directory, we just record here the directory
946 the new process should start in. This is set just before calling
947 sys_spawnve, and is not generally valid at any other time. */
948 static char * process_dir;
950 static BOOL
951 create_child (char *exe, char *cmdline, char *env, int is_gui_app,
952 int * pPid, child_process *cp)
954 STARTUPINFO start;
955 SECURITY_ATTRIBUTES sec_attrs;
956 #if 0
957 SECURITY_DESCRIPTOR sec_desc;
958 #endif
959 DWORD flags;
960 char dir[ MAXPATHLEN ];
962 if (cp == NULL) emacs_abort ();
964 memset (&start, 0, sizeof (start));
965 start.cb = sizeof (start);
967 #ifdef HAVE_NTGUI
968 if (NILP (Vw32_start_process_show_window) && !is_gui_app)
969 start.dwFlags = STARTF_USESTDHANDLES | STARTF_USESHOWWINDOW;
970 else
971 start.dwFlags = STARTF_USESTDHANDLES;
972 start.wShowWindow = SW_HIDE;
974 start.hStdInput = GetStdHandle (STD_INPUT_HANDLE);
975 start.hStdOutput = GetStdHandle (STD_OUTPUT_HANDLE);
976 start.hStdError = GetStdHandle (STD_ERROR_HANDLE);
977 #endif /* HAVE_NTGUI */
979 #if 0
980 /* Explicitly specify no security */
981 if (!InitializeSecurityDescriptor (&sec_desc, SECURITY_DESCRIPTOR_REVISION))
982 goto EH_Fail;
983 if (!SetSecurityDescriptorDacl (&sec_desc, TRUE, NULL, FALSE))
984 goto EH_Fail;
985 #endif
986 sec_attrs.nLength = sizeof (sec_attrs);
987 sec_attrs.lpSecurityDescriptor = NULL /* &sec_desc */;
988 sec_attrs.bInheritHandle = FALSE;
990 strcpy (dir, process_dir);
991 unixtodos_filename (dir);
993 flags = (!NILP (Vw32_start_process_share_console)
994 ? CREATE_NEW_PROCESS_GROUP
995 : CREATE_NEW_CONSOLE);
996 if (NILP (Vw32_start_process_inherit_error_mode))
997 flags |= CREATE_DEFAULT_ERROR_MODE;
998 if (!CreateProcess (exe, cmdline, &sec_attrs, NULL, TRUE,
999 flags, env, dir, &start, &cp->procinfo))
1000 goto EH_Fail;
1002 cp->pid = (int) cp->procinfo.dwProcessId;
1004 /* Hack for Windows 95, which assigns large (ie negative) pids */
1005 if (cp->pid < 0)
1006 cp->pid = -cp->pid;
1008 /* pid must fit in a Lisp_Int */
1009 cp->pid = cp->pid & INTMASK;
1011 *pPid = cp->pid;
1013 return TRUE;
1015 EH_Fail:
1016 DebPrint (("create_child.CreateProcess failed: %ld\n", GetLastError ()););
1017 return FALSE;
1020 /* create_child doesn't know what emacs' file handle will be for waiting
1021 on output from the child, so we need to make this additional call
1022 to register the handle with the process
1023 This way the select emulator knows how to match file handles with
1024 entries in child_procs. */
1025 void
1026 register_child (int pid, int fd)
1028 child_process *cp;
1030 cp = find_child_pid (pid);
1031 if (cp == NULL)
1033 DebPrint (("register_child unable to find pid %lu\n", pid));
1034 return;
1037 #ifdef FULL_DEBUG
1038 DebPrint (("register_child registered fd %d with pid %lu\n", fd, pid));
1039 #endif
1041 cp->fd = fd;
1043 /* thread is initially blocked until select is called; set status so
1044 that select will release thread */
1045 cp->status = STATUS_READ_ACKNOWLEDGED;
1047 /* attach child_process to fd_info */
1048 if (fd_info[fd].cp != NULL)
1050 DebPrint (("register_child: fd_info[%d] apparently in use!\n", fd));
1051 emacs_abort ();
1054 fd_info[fd].cp = cp;
1057 /* When a process dies its pipe will break so the reader thread will
1058 signal failure to the select emulator.
1059 The select emulator then calls this routine to clean up.
1060 Since the thread signaled failure we can assume it is exiting. */
1061 static void
1062 reap_subprocess (child_process *cp)
1064 if (cp->procinfo.hProcess)
1066 /* Reap the process */
1067 #ifdef FULL_DEBUG
1068 /* Process should have already died before we are called. */
1069 if (WaitForSingleObject (cp->procinfo.hProcess, 0) != WAIT_OBJECT_0)
1070 DebPrint (("reap_subprocess: child fpr fd %d has not died yet!", cp->fd));
1071 #endif
1072 CloseHandle (cp->procinfo.hProcess);
1073 cp->procinfo.hProcess = NULL;
1074 CloseHandle (cp->procinfo.hThread);
1075 cp->procinfo.hThread = NULL;
1078 /* For asynchronous children, the child_proc resources will be freed
1079 when the last pipe read descriptor is closed; for synchronous
1080 children, we must explicitly free the resources now because
1081 register_child has not been called. */
1082 if (cp->fd == -1)
1083 delete_child (cp);
1086 /* Wait for any of our existing child processes to die
1087 When it does, close its handle
1088 Return the pid and fill in the status if non-NULL. */
1091 sys_wait (int *status)
1093 DWORD active, retval;
1094 int nh;
1095 int pid;
1096 child_process *cp, *cps[MAX_CHILDREN];
1097 HANDLE wait_hnd[MAX_CHILDREN];
1099 nh = 0;
1100 if (dead_child != NULL)
1102 /* We want to wait for a specific child */
1103 wait_hnd[nh] = dead_child->procinfo.hProcess;
1104 cps[nh] = dead_child;
1105 if (!wait_hnd[nh]) emacs_abort ();
1106 nh++;
1107 active = 0;
1108 goto get_result;
1110 else
1112 for (cp = child_procs + (child_proc_count-1); cp >= child_procs; cp--)
1113 /* some child_procs might be sockets; ignore them */
1114 if (CHILD_ACTIVE (cp) && cp->procinfo.hProcess
1115 && (cp->fd < 0 || (fd_info[cp->fd].flags & FILE_AT_EOF) != 0))
1117 wait_hnd[nh] = cp->procinfo.hProcess;
1118 cps[nh] = cp;
1119 nh++;
1123 if (nh == 0)
1125 /* Nothing to wait on, so fail */
1126 errno = ECHILD;
1127 return -1;
1132 /* Check for quit about once a second. */
1133 QUIT;
1134 active = WaitForMultipleObjects (nh, wait_hnd, FALSE, 1000);
1135 } while (active == WAIT_TIMEOUT);
1137 if (active == WAIT_FAILED)
1139 errno = EBADF;
1140 return -1;
1142 else if (active >= WAIT_OBJECT_0
1143 && active < WAIT_OBJECT_0+MAXIMUM_WAIT_OBJECTS)
1145 active -= WAIT_OBJECT_0;
1147 else if (active >= WAIT_ABANDONED_0
1148 && active < WAIT_ABANDONED_0+MAXIMUM_WAIT_OBJECTS)
1150 active -= WAIT_ABANDONED_0;
1152 else
1153 emacs_abort ();
1155 get_result:
1156 if (!GetExitCodeProcess (wait_hnd[active], &retval))
1158 DebPrint (("Wait.GetExitCodeProcess failed with %lu\n",
1159 GetLastError ()));
1160 retval = 1;
1162 if (retval == STILL_ACTIVE)
1164 /* Should never happen */
1165 DebPrint (("Wait.WaitForMultipleObjects returned an active process\n"));
1166 errno = EINVAL;
1167 return -1;
1170 /* Massage the exit code from the process to match the format expected
1171 by the WIFSTOPPED et al macros in syswait.h. Only WIFSIGNALED and
1172 WIFEXITED are supported; WIFSTOPPED doesn't make sense under NT. */
1174 if (retval == STATUS_CONTROL_C_EXIT)
1175 retval = SIGINT;
1176 else
1177 retval <<= 8;
1179 cp = cps[active];
1180 pid = cp->pid;
1181 #ifdef FULL_DEBUG
1182 DebPrint (("Wait signaled with process pid %d\n", cp->pid));
1183 #endif
1185 if (status)
1187 *status = retval;
1189 else if (synch_process_alive)
1191 synch_process_alive = 0;
1193 /* Report the status of the synchronous process. */
1194 if (WIFEXITED (retval))
1195 synch_process_retcode = WEXITSTATUS (retval);
1196 else if (WIFSIGNALED (retval))
1198 int code = WTERMSIG (retval);
1199 const char *signame;
1201 synchronize_system_messages_locale ();
1202 signame = strsignal (code);
1204 if (signame == 0)
1205 signame = "unknown";
1207 synch_process_death = signame;
1210 reap_subprocess (cp);
1213 reap_subprocess (cp);
1215 return pid;
1218 /* Old versions of w32api headers don't have separate 32-bit and
1219 64-bit defines, but the one they have matches the 32-bit variety. */
1220 #ifndef IMAGE_NT_OPTIONAL_HDR32_MAGIC
1221 # define IMAGE_NT_OPTIONAL_HDR32_MAGIC IMAGE_NT_OPTIONAL_HDR_MAGIC
1222 # define IMAGE_OPTIONAL_HEADER32 IMAGE_OPTIONAL_HEADER
1223 #endif
1225 static void
1226 w32_executable_type (char * filename,
1227 int * is_dos_app,
1228 int * is_cygnus_app,
1229 int * is_gui_app)
1231 file_data executable;
1232 char * p;
1234 /* Default values in case we can't tell for sure. */
1235 *is_dos_app = FALSE;
1236 *is_cygnus_app = FALSE;
1237 *is_gui_app = FALSE;
1239 if (!open_input_file (&executable, filename))
1240 return;
1242 p = strrchr (filename, '.');
1244 /* We can only identify DOS .com programs from the extension. */
1245 if (p && xstrcasecmp (p, ".com") == 0)
1246 *is_dos_app = TRUE;
1247 else if (p && (xstrcasecmp (p, ".bat") == 0
1248 || xstrcasecmp (p, ".cmd") == 0))
1250 /* A DOS shell script - it appears that CreateProcess is happy to
1251 accept this (somewhat surprisingly); presumably it looks at
1252 COMSPEC to determine what executable to actually invoke.
1253 Therefore, we have to do the same here as well. */
1254 /* Actually, I think it uses the program association for that
1255 extension, which is defined in the registry. */
1256 p = egetenv ("COMSPEC");
1257 if (p)
1258 w32_executable_type (p, is_dos_app, is_cygnus_app, is_gui_app);
1260 else
1262 /* Look for DOS .exe signature - if found, we must also check that
1263 it isn't really a 16- or 32-bit Windows exe, since both formats
1264 start with a DOS program stub. Note that 16-bit Windows
1265 executables use the OS/2 1.x format. */
1267 IMAGE_DOS_HEADER * dos_header;
1268 IMAGE_NT_HEADERS * nt_header;
1270 dos_header = (PIMAGE_DOS_HEADER) executable.file_base;
1271 if (dos_header->e_magic != IMAGE_DOS_SIGNATURE)
1272 goto unwind;
1274 nt_header = (PIMAGE_NT_HEADERS) ((unsigned char *) dos_header + dos_header->e_lfanew);
1276 if ((char *) nt_header > (char *) dos_header + executable.size)
1278 /* Some dos headers (pkunzip) have bogus e_lfanew fields. */
1279 *is_dos_app = TRUE;
1281 else if (nt_header->Signature != IMAGE_NT_SIGNATURE
1282 && LOWORD (nt_header->Signature) != IMAGE_OS2_SIGNATURE)
1284 *is_dos_app = TRUE;
1286 else if (nt_header->Signature == IMAGE_NT_SIGNATURE)
1288 IMAGE_DATA_DIRECTORY *data_dir = NULL;
1289 if (nt_header->OptionalHeader.Magic == IMAGE_NT_OPTIONAL_HDR32_MAGIC)
1291 /* Ensure we are using the 32 bit structure. */
1292 IMAGE_OPTIONAL_HEADER32 *opt
1293 = (IMAGE_OPTIONAL_HEADER32*) &(nt_header->OptionalHeader);
1294 data_dir = opt->DataDirectory;
1295 *is_gui_app = (opt->Subsystem == IMAGE_SUBSYSTEM_WINDOWS_GUI);
1297 /* MingW 3.12 has the required 64 bit structs, but in case older
1298 versions don't, only check 64 bit exes if we know how. */
1299 #ifdef IMAGE_NT_OPTIONAL_HDR64_MAGIC
1300 else if (nt_header->OptionalHeader.Magic
1301 == IMAGE_NT_OPTIONAL_HDR64_MAGIC)
1303 IMAGE_OPTIONAL_HEADER64 *opt
1304 = (IMAGE_OPTIONAL_HEADER64*) &(nt_header->OptionalHeader);
1305 data_dir = opt->DataDirectory;
1306 *is_gui_app = (opt->Subsystem == IMAGE_SUBSYSTEM_WINDOWS_GUI);
1308 #endif
1309 if (data_dir)
1311 /* Look for cygwin.dll in DLL import list. */
1312 IMAGE_DATA_DIRECTORY import_dir =
1313 data_dir[IMAGE_DIRECTORY_ENTRY_IMPORT];
1314 IMAGE_IMPORT_DESCRIPTOR * imports;
1315 IMAGE_SECTION_HEADER * section;
1317 section = rva_to_section (import_dir.VirtualAddress, nt_header);
1318 imports = RVA_TO_PTR (import_dir.VirtualAddress, section,
1319 executable);
1321 for ( ; imports->Name; imports++)
1323 char * dllname = RVA_TO_PTR (imports->Name, section,
1324 executable);
1326 /* The exact name of the cygwin dll has changed with
1327 various releases, but hopefully this will be reasonably
1328 future proof. */
1329 if (strncmp (dllname, "cygwin", 6) == 0)
1331 *is_cygnus_app = TRUE;
1332 break;
1339 unwind:
1340 close_file_data (&executable);
1343 static int
1344 compare_env (const void *strp1, const void *strp2)
1346 const char *str1 = *(const char **)strp1, *str2 = *(const char **)strp2;
1348 while (*str1 && *str2 && *str1 != '=' && *str2 != '=')
1350 /* Sort order in command.com/cmd.exe is based on uppercasing
1351 names, so do the same here. */
1352 if (toupper (*str1) > toupper (*str2))
1353 return 1;
1354 else if (toupper (*str1) < toupper (*str2))
1355 return -1;
1356 str1++, str2++;
1359 if (*str1 == '=' && *str2 == '=')
1360 return 0;
1361 else if (*str1 == '=')
1362 return -1;
1363 else
1364 return 1;
1367 static void
1368 merge_and_sort_env (char **envp1, char **envp2, char **new_envp)
1370 char **optr, **nptr;
1371 int num;
1373 nptr = new_envp;
1374 optr = envp1;
1375 while (*optr)
1376 *nptr++ = *optr++;
1377 num = optr - envp1;
1379 optr = envp2;
1380 while (*optr)
1381 *nptr++ = *optr++;
1382 num += optr - envp2;
1384 qsort (new_envp, num, sizeof (char *), compare_env);
1386 *nptr = NULL;
1389 /* When a new child process is created we need to register it in our list,
1390 so intercept spawn requests. */
1392 sys_spawnve (int mode, char *cmdname, char **argv, char **envp)
1394 Lisp_Object program, full;
1395 char *cmdline, *env, *parg, **targ;
1396 int arglen, numenv;
1397 int pid;
1398 child_process *cp;
1399 int is_dos_app, is_cygnus_app, is_gui_app;
1400 int do_quoting = 0;
1401 char escape_char;
1402 /* We pass our process ID to our children by setting up an environment
1403 variable in their environment. */
1404 char ppid_env_var_buffer[64];
1405 char *extra_env[] = {ppid_env_var_buffer, NULL};
1406 /* These are the characters that cause an argument to need quoting.
1407 Arguments with whitespace characters need quoting to prevent the
1408 argument being split into two or more. Arguments with wildcards
1409 are also quoted, for consistency with posix platforms, where wildcards
1410 are not expanded if we run the program directly without a shell.
1411 Some extra whitespace characters need quoting in Cygwin programs,
1412 so this list is conditionally modified below. */
1413 char *sepchars = " \t*?";
1415 /* We don't care about the other modes */
1416 if (mode != _P_NOWAIT)
1418 errno = EINVAL;
1419 return -1;
1422 /* Handle executable names without an executable suffix. */
1423 program = build_string (cmdname);
1424 if (NILP (Ffile_executable_p (program)))
1426 struct gcpro gcpro1;
1428 full = Qnil;
1429 GCPRO1 (program);
1430 openp (Vexec_path, program, Vexec_suffixes, &full, make_number (X_OK));
1431 UNGCPRO;
1432 if (NILP (full))
1434 errno = EINVAL;
1435 return -1;
1437 program = full;
1440 /* make sure argv[0] and cmdname are both in DOS format */
1441 cmdname = SDATA (program);
1442 unixtodos_filename (cmdname);
1443 argv[0] = cmdname;
1445 /* Determine whether program is a 16-bit DOS executable, or a 32-bit Windows
1446 executable that is implicitly linked to the Cygnus dll (implying it
1447 was compiled with the Cygnus GNU toolchain and hence relies on
1448 cygwin.dll to parse the command line - we use this to decide how to
1449 escape quote chars in command line args that must be quoted).
1451 Also determine whether it is a GUI app, so that we don't hide its
1452 initial window unless specifically requested. */
1453 w32_executable_type (cmdname, &is_dos_app, &is_cygnus_app, &is_gui_app);
1455 /* On Windows 95, if cmdname is a DOS app, we invoke a helper
1456 application to start it by specifying the helper app as cmdname,
1457 while leaving the real app name as argv[0]. */
1458 if (is_dos_app)
1460 cmdname = alloca (MAXPATHLEN);
1461 if (egetenv ("CMDPROXY"))
1462 strcpy (cmdname, egetenv ("CMDPROXY"));
1463 else
1465 strcpy (cmdname, SDATA (Vinvocation_directory));
1466 strcat (cmdname, "cmdproxy.exe");
1468 unixtodos_filename (cmdname);
1471 /* we have to do some conjuring here to put argv and envp into the
1472 form CreateProcess wants... argv needs to be a space separated/null
1473 terminated list of parameters, and envp is a null
1474 separated/double-null terminated list of parameters.
1476 Additionally, zero-length args and args containing whitespace or
1477 quote chars need to be wrapped in double quotes - for this to work,
1478 embedded quotes need to be escaped as well. The aim is to ensure
1479 the child process reconstructs the argv array we start with
1480 exactly, so we treat quotes at the beginning and end of arguments
1481 as embedded quotes.
1483 The w32 GNU-based library from Cygnus doubles quotes to escape
1484 them, while MSVC uses backslash for escaping. (Actually the MSVC
1485 startup code does attempt to recognize doubled quotes and accept
1486 them, but gets it wrong and ends up requiring three quotes to get a
1487 single embedded quote!) So by default we decide whether to use
1488 quote or backslash as the escape character based on whether the
1489 binary is apparently a Cygnus compiled app.
1491 Note that using backslash to escape embedded quotes requires
1492 additional special handling if an embedded quote is already
1493 preceded by backslash, or if an arg requiring quoting ends with
1494 backslash. In such cases, the run of escape characters needs to be
1495 doubled. For consistency, we apply this special handling as long
1496 as the escape character is not quote.
1498 Since we have no idea how large argv and envp are likely to be we
1499 figure out list lengths on the fly and allocate them. */
1501 if (!NILP (Vw32_quote_process_args))
1503 do_quoting = 1;
1504 /* Override escape char by binding w32-quote-process-args to
1505 desired character, or use t for auto-selection. */
1506 if (INTEGERP (Vw32_quote_process_args))
1507 escape_char = XINT (Vw32_quote_process_args);
1508 else
1509 escape_char = is_cygnus_app ? '"' : '\\';
1512 /* Cygwin apps needs quoting a bit more often. */
1513 if (escape_char == '"')
1514 sepchars = "\r\n\t\f '";
1516 /* do argv... */
1517 arglen = 0;
1518 targ = argv;
1519 while (*targ)
1521 char * p = *targ;
1522 int need_quotes = 0;
1523 int escape_char_run = 0;
1525 if (*p == 0)
1526 need_quotes = 1;
1527 for ( ; *p; p++)
1529 if (escape_char == '"' && *p == '\\')
1530 /* If it's a Cygwin app, \ needs to be escaped. */
1531 arglen++;
1532 else if (*p == '"')
1534 /* allow for embedded quotes to be escaped */
1535 arglen++;
1536 need_quotes = 1;
1537 /* handle the case where the embedded quote is already escaped */
1538 if (escape_char_run > 0)
1540 /* To preserve the arg exactly, we need to double the
1541 preceding escape characters (plus adding one to
1542 escape the quote character itself). */
1543 arglen += escape_char_run;
1546 else if (strchr (sepchars, *p) != NULL)
1548 need_quotes = 1;
1551 if (*p == escape_char && escape_char != '"')
1552 escape_char_run++;
1553 else
1554 escape_char_run = 0;
1556 if (need_quotes)
1558 arglen += 2;
1559 /* handle the case where the arg ends with an escape char - we
1560 must not let the enclosing quote be escaped. */
1561 if (escape_char_run > 0)
1562 arglen += escape_char_run;
1564 arglen += strlen (*targ++) + 1;
1566 cmdline = alloca (arglen);
1567 targ = argv;
1568 parg = cmdline;
1569 while (*targ)
1571 char * p = *targ;
1572 int need_quotes = 0;
1574 if (*p == 0)
1575 need_quotes = 1;
1577 if (do_quoting)
1579 for ( ; *p; p++)
1580 if ((strchr (sepchars, *p) != NULL) || *p == '"')
1581 need_quotes = 1;
1583 if (need_quotes)
1585 int escape_char_run = 0;
1586 char * first;
1587 char * last;
1589 p = *targ;
1590 first = p;
1591 last = p + strlen (p) - 1;
1592 *parg++ = '"';
1593 #if 0
1594 /* This version does not escape quotes if they occur at the
1595 beginning or end of the arg - this could lead to incorrect
1596 behavior when the arg itself represents a command line
1597 containing quoted args. I believe this was originally done
1598 as a hack to make some things work, before
1599 `w32-quote-process-args' was added. */
1600 while (*p)
1602 if (*p == '"' && p > first && p < last)
1603 *parg++ = escape_char; /* escape embedded quotes */
1604 *parg++ = *p++;
1606 #else
1607 for ( ; *p; p++)
1609 if (*p == '"')
1611 /* double preceding escape chars if any */
1612 while (escape_char_run > 0)
1614 *parg++ = escape_char;
1615 escape_char_run--;
1617 /* escape all quote chars, even at beginning or end */
1618 *parg++ = escape_char;
1620 else if (escape_char == '"' && *p == '\\')
1621 *parg++ = '\\';
1622 *parg++ = *p;
1624 if (*p == escape_char && escape_char != '"')
1625 escape_char_run++;
1626 else
1627 escape_char_run = 0;
1629 /* double escape chars before enclosing quote */
1630 while (escape_char_run > 0)
1632 *parg++ = escape_char;
1633 escape_char_run--;
1635 #endif
1636 *parg++ = '"';
1638 else
1640 strcpy (parg, *targ);
1641 parg += strlen (*targ);
1643 *parg++ = ' ';
1644 targ++;
1646 *--parg = '\0';
1648 /* and envp... */
1649 arglen = 1;
1650 targ = envp;
1651 numenv = 1; /* for end null */
1652 while (*targ)
1654 arglen += strlen (*targ++) + 1;
1655 numenv++;
1657 /* extra env vars... */
1658 sprintf (ppid_env_var_buffer, "EM_PARENT_PROCESS_ID=%lu",
1659 GetCurrentProcessId ());
1660 arglen += strlen (ppid_env_var_buffer) + 1;
1661 numenv++;
1663 /* merge env passed in and extra env into one, and sort it. */
1664 targ = (char **) alloca (numenv * sizeof (char *));
1665 merge_and_sort_env (envp, extra_env, targ);
1667 /* concatenate env entries. */
1668 env = alloca (arglen);
1669 parg = env;
1670 while (*targ)
1672 strcpy (parg, *targ);
1673 parg += strlen (*targ++);
1674 *parg++ = '\0';
1676 *parg++ = '\0';
1677 *parg = '\0';
1679 cp = new_child ();
1680 if (cp == NULL)
1682 errno = EAGAIN;
1683 return -1;
1686 /* Now create the process. */
1687 if (!create_child (cmdname, cmdline, env, is_gui_app, &pid, cp))
1689 delete_child (cp);
1690 errno = ENOEXEC;
1691 return -1;
1694 return pid;
1697 /* Emulate the select call
1698 Wait for available input on any of the given rfds, or timeout if
1699 a timeout is given and no input is detected
1700 wfds and efds are not supported and must be NULL.
1702 For simplicity, we detect the death of child processes here and
1703 synchronously call the SIGCHLD handler. Since it is possible for
1704 children to be created without a corresponding pipe handle from which
1705 to read output, we wait separately on the process handles as well as
1706 the char_avail events for each process pipe. We only call
1707 wait/reap_process when the process actually terminates.
1709 To reduce the number of places in which Emacs can be hung such that
1710 C-g is not able to interrupt it, we always wait on interrupt_handle
1711 (which is signaled by the input thread when C-g is detected). If we
1712 detect that we were woken up by C-g, we return -1 with errno set to
1713 EINTR as on Unix. */
1715 /* From w32console.c */
1716 extern HANDLE keyboard_handle;
1718 /* From w32xfns.c */
1719 extern HANDLE interrupt_handle;
1721 /* From process.c */
1722 extern int proc_buffered_char[];
1725 sys_select (int nfds, SELECT_TYPE *rfds, SELECT_TYPE *wfds, SELECT_TYPE *efds,
1726 EMACS_TIME *timeout, void *ignored)
1728 SELECT_TYPE orfds;
1729 DWORD timeout_ms, start_time;
1730 int i, nh, nc, nr;
1731 DWORD active;
1732 child_process *cp, *cps[MAX_CHILDREN];
1733 HANDLE wait_hnd[MAXDESC + MAX_CHILDREN];
1734 int fdindex[MAXDESC]; /* mapping from wait handles back to descriptors */
1736 timeout_ms =
1737 timeout ? (timeout->tv_sec * 1000 + timeout->tv_nsec / 1000000) : INFINITE;
1739 /* If the descriptor sets are NULL but timeout isn't, then just Sleep. */
1740 if (rfds == NULL && wfds == NULL && efds == NULL && timeout != NULL)
1742 Sleep (timeout_ms);
1743 return 0;
1746 /* Otherwise, we only handle rfds, so fail otherwise. */
1747 if (rfds == NULL || wfds != NULL || efds != NULL)
1749 errno = EINVAL;
1750 return -1;
1753 orfds = *rfds;
1754 FD_ZERO (rfds);
1755 nr = 0;
1757 /* Always wait on interrupt_handle, to detect C-g (quit). */
1758 wait_hnd[0] = interrupt_handle;
1759 fdindex[0] = -1;
1761 /* Build a list of pipe handles to wait on. */
1762 nh = 1;
1763 for (i = 0; i < nfds; i++)
1764 if (FD_ISSET (i, &orfds))
1766 if (i == 0)
1768 if (keyboard_handle)
1770 /* Handle stdin specially */
1771 wait_hnd[nh] = keyboard_handle;
1772 fdindex[nh] = i;
1773 nh++;
1776 /* Check for any emacs-generated input in the queue since
1777 it won't be detected in the wait */
1778 if (detect_input_pending ())
1780 FD_SET (i, rfds);
1781 return 1;
1784 else
1786 /* Child process and socket input */
1787 cp = fd_info[i].cp;
1788 if (cp)
1790 int current_status = cp->status;
1792 if (current_status == STATUS_READ_ACKNOWLEDGED)
1794 /* Tell reader thread which file handle to use. */
1795 cp->fd = i;
1796 /* Wake up the reader thread for this process */
1797 cp->status = STATUS_READ_READY;
1798 if (!SetEvent (cp->char_consumed))
1799 DebPrint (("nt_select.SetEvent failed with "
1800 "%lu for fd %ld\n", GetLastError (), i));
1803 #ifdef CHECK_INTERLOCK
1804 /* slightly crude cross-checking of interlock between threads */
1806 current_status = cp->status;
1807 if (WaitForSingleObject (cp->char_avail, 0) == WAIT_OBJECT_0)
1809 /* char_avail has been signaled, so status (which may
1810 have changed) should indicate read has completed
1811 but has not been acknowledged. */
1812 current_status = cp->status;
1813 if (current_status != STATUS_READ_SUCCEEDED
1814 && current_status != STATUS_READ_FAILED)
1815 DebPrint (("char_avail set, but read not completed: status %d\n",
1816 current_status));
1818 else
1820 /* char_avail has not been signaled, so status should
1821 indicate that read is in progress; small possibility
1822 that read has completed but event wasn't yet signaled
1823 when we tested it (because a context switch occurred
1824 or if running on separate CPUs). */
1825 if (current_status != STATUS_READ_READY
1826 && current_status != STATUS_READ_IN_PROGRESS
1827 && current_status != STATUS_READ_SUCCEEDED
1828 && current_status != STATUS_READ_FAILED)
1829 DebPrint (("char_avail reset, but read status is bad: %d\n",
1830 current_status));
1832 #endif
1833 wait_hnd[nh] = cp->char_avail;
1834 fdindex[nh] = i;
1835 if (!wait_hnd[nh]) emacs_abort ();
1836 nh++;
1837 #ifdef FULL_DEBUG
1838 DebPrint (("select waiting on child %d fd %d\n",
1839 cp-child_procs, i));
1840 #endif
1842 else
1844 /* Unable to find something to wait on for this fd, skip */
1846 /* Note that this is not a fatal error, and can in fact
1847 happen in unusual circumstances. Specifically, if
1848 sys_spawnve fails, eg. because the program doesn't
1849 exist, and debug-on-error is t so Fsignal invokes a
1850 nested input loop, then the process output pipe is
1851 still included in input_wait_mask with no child_proc
1852 associated with it. (It is removed when the debugger
1853 exits the nested input loop and the error is thrown.) */
1855 DebPrint (("sys_select: fd %ld is invalid! ignoring\n", i));
1860 count_children:
1861 /* Add handles of child processes. */
1862 nc = 0;
1863 for (cp = child_procs + (child_proc_count-1); cp >= child_procs; cp--)
1864 /* Some child_procs might be sockets; ignore them. Also some
1865 children may have died already, but we haven't finished reading
1866 the process output; ignore them too. */
1867 if (CHILD_ACTIVE (cp) && cp->procinfo.hProcess
1868 && (cp->fd < 0
1869 || (fd_info[cp->fd].flags & FILE_SEND_SIGCHLD) == 0
1870 || (fd_info[cp->fd].flags & FILE_AT_EOF) != 0)
1873 wait_hnd[nh + nc] = cp->procinfo.hProcess;
1874 cps[nc] = cp;
1875 nc++;
1878 /* Nothing to look for, so we didn't find anything */
1879 if (nh + nc == 0)
1881 if (timeout)
1882 Sleep (timeout_ms);
1883 return 0;
1886 start_time = GetTickCount ();
1888 /* Wait for input or child death to be signaled. If user input is
1889 allowed, then also accept window messages. */
1890 if (FD_ISSET (0, &orfds))
1891 active = MsgWaitForMultipleObjects (nh + nc, wait_hnd, FALSE, timeout_ms,
1892 QS_ALLINPUT);
1893 else
1894 active = WaitForMultipleObjects (nh + nc, wait_hnd, FALSE, timeout_ms);
1896 if (active == WAIT_FAILED)
1898 DebPrint (("select.WaitForMultipleObjects (%d, %lu) failed with %lu\n",
1899 nh + nc, timeout_ms, GetLastError ()));
1900 /* don't return EBADF - this causes wait_reading_process_output to
1901 abort; WAIT_FAILED is returned when single-stepping under
1902 Windows 95 after switching thread focus in debugger, and
1903 possibly at other times. */
1904 errno = EINTR;
1905 return -1;
1907 else if (active == WAIT_TIMEOUT)
1909 return 0;
1911 else if (active >= WAIT_OBJECT_0
1912 && active < WAIT_OBJECT_0+MAXIMUM_WAIT_OBJECTS)
1914 active -= WAIT_OBJECT_0;
1916 else if (active >= WAIT_ABANDONED_0
1917 && active < WAIT_ABANDONED_0+MAXIMUM_WAIT_OBJECTS)
1919 active -= WAIT_ABANDONED_0;
1921 else
1922 emacs_abort ();
1924 /* Loop over all handles after active (now officially documented as
1925 being the first signaled handle in the array). We do this to
1926 ensure fairness, so that all channels with data available will be
1927 processed - otherwise higher numbered channels could be starved. */
1930 if (active == nh + nc)
1932 /* There are messages in the lisp thread's queue; we must
1933 drain the queue now to ensure they are processed promptly,
1934 because if we don't do so, we will not be woken again until
1935 further messages arrive.
1937 NB. If ever we allow window message procedures to callback
1938 into lisp, we will need to ensure messages are dispatched
1939 at a safe time for lisp code to be run (*), and we may also
1940 want to provide some hooks in the dispatch loop to cater
1941 for modeless dialogs created by lisp (ie. to register
1942 window handles to pass to IsDialogMessage).
1944 (*) Note that MsgWaitForMultipleObjects above is an
1945 internal dispatch point for messages that are sent to
1946 windows created by this thread. */
1947 drain_message_queue ();
1949 else if (active >= nh)
1951 cp = cps[active - nh];
1953 /* We cannot always signal SIGCHLD immediately; if we have not
1954 finished reading the process output, we must delay sending
1955 SIGCHLD until we do. */
1957 if (cp->fd >= 0 && (fd_info[cp->fd].flags & FILE_AT_EOF) == 0)
1958 fd_info[cp->fd].flags |= FILE_SEND_SIGCHLD;
1959 /* SIG_DFL for SIGCHLD is ignore */
1960 else if (sig_handlers[SIGCHLD] != SIG_DFL &&
1961 sig_handlers[SIGCHLD] != SIG_IGN)
1963 #ifdef FULL_DEBUG
1964 DebPrint (("select calling SIGCHLD handler for pid %d\n",
1965 cp->pid));
1966 #endif
1967 dead_child = cp;
1968 sig_handlers[SIGCHLD] (SIGCHLD);
1969 dead_child = NULL;
1972 else if (fdindex[active] == -1)
1974 /* Quit (C-g) was detected. */
1975 errno = EINTR;
1976 return -1;
1978 else if (fdindex[active] == 0)
1980 /* Keyboard input available */
1981 FD_SET (0, rfds);
1982 nr++;
1984 else
1986 /* must be a socket or pipe - read ahead should have
1987 completed, either succeeding or failing. */
1988 FD_SET (fdindex[active], rfds);
1989 nr++;
1992 /* Even though wait_reading_process_output only reads from at most
1993 one channel, we must process all channels here so that we reap
1994 all children that have died. */
1995 while (++active < nh + nc)
1996 if (WaitForSingleObject (wait_hnd[active], 0) == WAIT_OBJECT_0)
1997 break;
1998 } while (active < nh + nc);
2000 /* If no input has arrived and timeout hasn't expired, wait again. */
2001 if (nr == 0)
2003 DWORD elapsed = GetTickCount () - start_time;
2005 if (timeout_ms > elapsed) /* INFINITE is MAX_UINT */
2007 if (timeout_ms != INFINITE)
2008 timeout_ms -= elapsed;
2009 goto count_children;
2013 return nr;
2016 /* Substitute for certain kill () operations */
2018 static BOOL CALLBACK
2019 find_child_console (HWND hwnd, LPARAM arg)
2021 child_process * cp = (child_process *) arg;
2022 DWORD thread_id;
2023 DWORD process_id;
2025 thread_id = GetWindowThreadProcessId (hwnd, &process_id);
2026 if (process_id == cp->procinfo.dwProcessId)
2028 char window_class[32];
2030 GetClassName (hwnd, window_class, sizeof (window_class));
2031 if (strcmp (window_class,
2032 (os_subtype == OS_9X)
2033 ? "tty"
2034 : "ConsoleWindowClass") == 0)
2036 cp->hwnd = hwnd;
2037 return FALSE;
2040 /* keep looking */
2041 return TRUE;
2044 /* Emulate 'kill', but only for other processes. */
2046 sys_kill (int pid, int sig)
2048 child_process *cp;
2049 HANDLE proc_hand;
2050 int need_to_free = 0;
2051 int rc = 0;
2053 /* Only handle signals that will result in the process dying */
2054 if (sig != SIGINT && sig != SIGKILL && sig != SIGQUIT && sig != SIGHUP)
2056 errno = EINVAL;
2057 return -1;
2060 cp = find_child_pid (pid);
2061 if (cp == NULL)
2063 /* We were passed a PID of something other than our subprocess.
2064 If that is our own PID, we will send to ourself a message to
2065 close the selected frame, which does not necessarily
2066 terminates Emacs. But then we are not supposed to call
2067 sys_kill with our own PID. */
2068 proc_hand = OpenProcess (PROCESS_TERMINATE, 0, pid);
2069 if (proc_hand == NULL)
2071 errno = EPERM;
2072 return -1;
2074 need_to_free = 1;
2076 else
2078 proc_hand = cp->procinfo.hProcess;
2079 pid = cp->procinfo.dwProcessId;
2081 /* Try to locate console window for process. */
2082 EnumWindows (find_child_console, (LPARAM) cp);
2085 if (sig == SIGINT || sig == SIGQUIT)
2087 if (NILP (Vw32_start_process_share_console) && cp && cp->hwnd)
2089 BYTE control_scan_code = (BYTE) MapVirtualKey (VK_CONTROL, 0);
2090 /* Fake Ctrl-C for SIGINT, and Ctrl-Break for SIGQUIT. */
2091 BYTE vk_break_code = (sig == SIGINT) ? 'C' : VK_CANCEL;
2092 BYTE break_scan_code = (BYTE) MapVirtualKey (vk_break_code, 0);
2093 HWND foreground_window;
2095 if (break_scan_code == 0)
2097 /* Fake Ctrl-C for SIGQUIT if we can't manage Ctrl-Break. */
2098 vk_break_code = 'C';
2099 break_scan_code = (BYTE) MapVirtualKey (vk_break_code, 0);
2102 foreground_window = GetForegroundWindow ();
2103 if (foreground_window)
2105 /* NT 5.0, and apparently also Windows 98, will not allow
2106 a Window to be set to foreground directly without the
2107 user's involvement. The workaround is to attach
2108 ourselves to the thread that owns the foreground
2109 window, since that is the only thread that can set the
2110 foreground window. */
2111 DWORD foreground_thread, child_thread;
2112 foreground_thread =
2113 GetWindowThreadProcessId (foreground_window, NULL);
2114 if (foreground_thread == GetCurrentThreadId ()
2115 || !AttachThreadInput (GetCurrentThreadId (),
2116 foreground_thread, TRUE))
2117 foreground_thread = 0;
2119 child_thread = GetWindowThreadProcessId (cp->hwnd, NULL);
2120 if (child_thread == GetCurrentThreadId ()
2121 || !AttachThreadInput (GetCurrentThreadId (),
2122 child_thread, TRUE))
2123 child_thread = 0;
2125 /* Set the foreground window to the child. */
2126 if (SetForegroundWindow (cp->hwnd))
2128 /* Generate keystrokes as if user had typed Ctrl-Break or
2129 Ctrl-C. */
2130 keybd_event (VK_CONTROL, control_scan_code, 0, 0);
2131 keybd_event (vk_break_code, break_scan_code,
2132 (vk_break_code == 'C' ? 0 : KEYEVENTF_EXTENDEDKEY), 0);
2133 keybd_event (vk_break_code, break_scan_code,
2134 (vk_break_code == 'C' ? 0 : KEYEVENTF_EXTENDEDKEY)
2135 | KEYEVENTF_KEYUP, 0);
2136 keybd_event (VK_CONTROL, control_scan_code,
2137 KEYEVENTF_KEYUP, 0);
2139 /* Sleep for a bit to give time for Emacs frame to respond
2140 to focus change events (if Emacs was active app). */
2141 Sleep (100);
2143 SetForegroundWindow (foreground_window);
2145 /* Detach from the foreground and child threads now that
2146 the foreground switching is over. */
2147 if (foreground_thread)
2148 AttachThreadInput (GetCurrentThreadId (),
2149 foreground_thread, FALSE);
2150 if (child_thread)
2151 AttachThreadInput (GetCurrentThreadId (),
2152 child_thread, FALSE);
2155 /* Ctrl-Break is NT equivalent of SIGINT. */
2156 else if (!GenerateConsoleCtrlEvent (CTRL_BREAK_EVENT, pid))
2158 DebPrint (("sys_kill.GenerateConsoleCtrlEvent return %d "
2159 "for pid %lu\n", GetLastError (), pid));
2160 errno = EINVAL;
2161 rc = -1;
2164 else
2166 if (NILP (Vw32_start_process_share_console) && cp && cp->hwnd)
2168 #if 1
2169 if (os_subtype == OS_9X)
2172 Another possibility is to try terminating the VDM out-right by
2173 calling the Shell VxD (id 0x17) V86 interface, function #4
2174 "SHELL_Destroy_VM", ie.
2176 mov edx,4
2177 mov ebx,vm_handle
2178 call shellapi
2180 First need to determine the current VM handle, and then arrange for
2181 the shellapi call to be made from the system vm (by using
2182 Switch_VM_and_callback).
2184 Could try to invoke DestroyVM through CallVxD.
2187 #if 0
2188 /* On Windows 95, posting WM_QUIT causes the 16-bit subsystem
2189 to hang when cmdproxy is used in conjunction with
2190 command.com for an interactive shell. Posting
2191 WM_CLOSE pops up a dialog that, when Yes is selected,
2192 does the same thing. TerminateProcess is also less
2193 than ideal in that subprocesses tend to stick around
2194 until the machine is shutdown, but at least it
2195 doesn't freeze the 16-bit subsystem. */
2196 PostMessage (cp->hwnd, WM_QUIT, 0xff, 0);
2197 #endif
2198 if (!TerminateProcess (proc_hand, 0xff))
2200 DebPrint (("sys_kill.TerminateProcess returned %d "
2201 "for pid %lu\n", GetLastError (), pid));
2202 errno = EINVAL;
2203 rc = -1;
2206 else
2207 #endif
2208 PostMessage (cp->hwnd, WM_CLOSE, 0, 0);
2210 /* Kill the process. On W32 this doesn't kill child processes
2211 so it doesn't work very well for shells which is why it's not
2212 used in every case. */
2213 else if (!TerminateProcess (proc_hand, 0xff))
2215 DebPrint (("sys_kill.TerminateProcess returned %d "
2216 "for pid %lu\n", GetLastError (), pid));
2217 errno = EINVAL;
2218 rc = -1;
2222 if (need_to_free)
2223 CloseHandle (proc_hand);
2225 return rc;
2228 /* The following two routines are used to manipulate stdin, stdout, and
2229 stderr of our child processes.
2231 Assuming that in, out, and err are *not* inheritable, we make them
2232 stdin, stdout, and stderr of the child as follows:
2234 - Save the parent's current standard handles.
2235 - Set the std handles to inheritable duplicates of the ones being passed in.
2236 (Note that _get_osfhandle() is an io.h procedure that retrieves the
2237 NT file handle for a crt file descriptor.)
2238 - Spawn the child, which inherits in, out, and err as stdin,
2239 stdout, and stderr. (see Spawnve)
2240 - Close the std handles passed to the child.
2241 - Reset the parent's standard handles to the saved handles.
2242 (see reset_standard_handles)
2243 We assume that the caller closes in, out, and err after calling us. */
2245 void
2246 prepare_standard_handles (int in, int out, int err, HANDLE handles[3])
2248 HANDLE parent;
2249 HANDLE newstdin, newstdout, newstderr;
2251 parent = GetCurrentProcess ();
2253 handles[0] = GetStdHandle (STD_INPUT_HANDLE);
2254 handles[1] = GetStdHandle (STD_OUTPUT_HANDLE);
2255 handles[2] = GetStdHandle (STD_ERROR_HANDLE);
2257 /* make inheritable copies of the new handles */
2258 if (!DuplicateHandle (parent,
2259 (HANDLE) _get_osfhandle (in),
2260 parent,
2261 &newstdin,
2263 TRUE,
2264 DUPLICATE_SAME_ACCESS))
2265 report_file_error ("Duplicating input handle for child", Qnil);
2267 if (!DuplicateHandle (parent,
2268 (HANDLE) _get_osfhandle (out),
2269 parent,
2270 &newstdout,
2272 TRUE,
2273 DUPLICATE_SAME_ACCESS))
2274 report_file_error ("Duplicating output handle for child", Qnil);
2276 if (!DuplicateHandle (parent,
2277 (HANDLE) _get_osfhandle (err),
2278 parent,
2279 &newstderr,
2281 TRUE,
2282 DUPLICATE_SAME_ACCESS))
2283 report_file_error ("Duplicating error handle for child", Qnil);
2285 /* and store them as our std handles */
2286 if (!SetStdHandle (STD_INPUT_HANDLE, newstdin))
2287 report_file_error ("Changing stdin handle", Qnil);
2289 if (!SetStdHandle (STD_OUTPUT_HANDLE, newstdout))
2290 report_file_error ("Changing stdout handle", Qnil);
2292 if (!SetStdHandle (STD_ERROR_HANDLE, newstderr))
2293 report_file_error ("Changing stderr handle", Qnil);
2296 void
2297 reset_standard_handles (int in, int out, int err, HANDLE handles[3])
2299 /* close the duplicated handles passed to the child */
2300 CloseHandle (GetStdHandle (STD_INPUT_HANDLE));
2301 CloseHandle (GetStdHandle (STD_OUTPUT_HANDLE));
2302 CloseHandle (GetStdHandle (STD_ERROR_HANDLE));
2304 /* now restore parent's saved std handles */
2305 SetStdHandle (STD_INPUT_HANDLE, handles[0]);
2306 SetStdHandle (STD_OUTPUT_HANDLE, handles[1]);
2307 SetStdHandle (STD_ERROR_HANDLE, handles[2]);
2310 void
2311 set_process_dir (char * dir)
2313 process_dir = dir;
2316 /* To avoid problems with winsock implementations that work over dial-up
2317 connections causing or requiring a connection to exist while Emacs is
2318 running, Emacs no longer automatically loads winsock on startup if it
2319 is present. Instead, it will be loaded when open-network-stream is
2320 first called.
2322 To allow full control over when winsock is loaded, we provide these
2323 two functions to dynamically load and unload winsock. This allows
2324 dial-up users to only be connected when they actually need to use
2325 socket services. */
2327 /* From w32.c */
2328 extern HANDLE winsock_lib;
2329 extern BOOL term_winsock (void);
2330 extern BOOL init_winsock (int load_now);
2332 DEFUN ("w32-has-winsock", Fw32_has_winsock, Sw32_has_winsock, 0, 1, 0,
2333 doc: /* Test for presence of the Windows socket library `winsock'.
2334 Returns non-nil if winsock support is present, nil otherwise.
2336 If the optional argument LOAD-NOW is non-nil, the winsock library is
2337 also loaded immediately if not already loaded. If winsock is loaded,
2338 the winsock local hostname is returned (since this may be different from
2339 the value of `system-name' and should supplant it), otherwise t is
2340 returned to indicate winsock support is present. */)
2341 (Lisp_Object load_now)
2343 int have_winsock;
2345 have_winsock = init_winsock (!NILP (load_now));
2346 if (have_winsock)
2348 if (winsock_lib != NULL)
2350 /* Return new value for system-name. The best way to do this
2351 is to call init_system_name, saving and restoring the
2352 original value to avoid side-effects. */
2353 Lisp_Object orig_hostname = Vsystem_name;
2354 Lisp_Object hostname;
2356 init_system_name ();
2357 hostname = Vsystem_name;
2358 Vsystem_name = orig_hostname;
2359 return hostname;
2361 return Qt;
2363 return Qnil;
2366 DEFUN ("w32-unload-winsock", Fw32_unload_winsock, Sw32_unload_winsock,
2367 0, 0, 0,
2368 doc: /* Unload the Windows socket library `winsock' if loaded.
2369 This is provided to allow dial-up socket connections to be disconnected
2370 when no longer needed. Returns nil without unloading winsock if any
2371 socket connections still exist. */)
2372 (void)
2374 return term_winsock () ? Qt : Qnil;
2378 /* Some miscellaneous functions that are Windows specific, but not GUI
2379 specific (ie. are applicable in terminal or batch mode as well). */
2381 DEFUN ("w32-short-file-name", Fw32_short_file_name, Sw32_short_file_name, 1, 1, 0,
2382 doc: /* Return the short file name version (8.3) of the full path of FILENAME.
2383 If FILENAME does not exist, return nil.
2384 All path elements in FILENAME are converted to their short names. */)
2385 (Lisp_Object filename)
2387 char shortname[MAX_PATH];
2389 CHECK_STRING (filename);
2391 /* first expand it. */
2392 filename = Fexpand_file_name (filename, Qnil);
2394 /* luckily, this returns the short version of each element in the path. */
2395 if (GetShortPathName (SDATA (ENCODE_FILE (filename)), shortname, MAX_PATH) == 0)
2396 return Qnil;
2398 dostounix_filename (shortname);
2400 return build_string (shortname);
2404 DEFUN ("w32-long-file-name", Fw32_long_file_name, Sw32_long_file_name,
2405 1, 1, 0,
2406 doc: /* Return the long file name version of the full path of FILENAME.
2407 If FILENAME does not exist, return nil.
2408 All path elements in FILENAME are converted to their long names. */)
2409 (Lisp_Object filename)
2411 char longname[ MAX_PATH ];
2412 int drive_only = 0;
2414 CHECK_STRING (filename);
2416 if (SBYTES (filename) == 2
2417 && *(SDATA (filename) + 1) == ':')
2418 drive_only = 1;
2420 /* first expand it. */
2421 filename = Fexpand_file_name (filename, Qnil);
2423 if (!w32_get_long_filename (SDATA (ENCODE_FILE (filename)), longname, MAX_PATH))
2424 return Qnil;
2426 dostounix_filename (longname);
2428 /* If we were passed only a drive, make sure that a slash is not appended
2429 for consistency with directories. Allow for drive mapping via SUBST
2430 in case expand-file-name is ever changed to expand those. */
2431 if (drive_only && longname[1] == ':' && longname[2] == '/' && !longname[3])
2432 longname[2] = '\0';
2434 return DECODE_FILE (build_string (longname));
2437 DEFUN ("w32-set-process-priority", Fw32_set_process_priority,
2438 Sw32_set_process_priority, 2, 2, 0,
2439 doc: /* Set the priority of PROCESS to PRIORITY.
2440 If PROCESS is nil, the priority of Emacs is changed, otherwise the
2441 priority of the process whose pid is PROCESS is changed.
2442 PRIORITY should be one of the symbols high, normal, or low;
2443 any other symbol will be interpreted as normal.
2445 If successful, the return value is t, otherwise nil. */)
2446 (Lisp_Object process, Lisp_Object priority)
2448 HANDLE proc_handle = GetCurrentProcess ();
2449 DWORD priority_class = NORMAL_PRIORITY_CLASS;
2450 Lisp_Object result = Qnil;
2452 CHECK_SYMBOL (priority);
2454 if (!NILP (process))
2456 DWORD pid;
2457 child_process *cp;
2459 CHECK_NUMBER (process);
2461 /* Allow pid to be an internally generated one, or one obtained
2462 externally. This is necessary because real pids on Windows 95 are
2463 negative. */
2465 pid = XINT (process);
2466 cp = find_child_pid (pid);
2467 if (cp != NULL)
2468 pid = cp->procinfo.dwProcessId;
2470 proc_handle = OpenProcess (PROCESS_SET_INFORMATION, FALSE, pid);
2473 if (EQ (priority, Qhigh))
2474 priority_class = HIGH_PRIORITY_CLASS;
2475 else if (EQ (priority, Qlow))
2476 priority_class = IDLE_PRIORITY_CLASS;
2478 if (proc_handle != NULL)
2480 if (SetPriorityClass (proc_handle, priority_class))
2481 result = Qt;
2482 if (!NILP (process))
2483 CloseHandle (proc_handle);
2486 return result;
2489 #ifdef HAVE_LANGINFO_CODESET
2490 /* Emulation of nl_langinfo. Used in fns.c:Flocale_info. */
2491 char *
2492 nl_langinfo (nl_item item)
2494 /* Conversion of Posix item numbers to their Windows equivalents. */
2495 static const LCTYPE w32item[] = {
2496 LOCALE_IDEFAULTANSICODEPAGE,
2497 LOCALE_SDAYNAME1, LOCALE_SDAYNAME2, LOCALE_SDAYNAME3,
2498 LOCALE_SDAYNAME4, LOCALE_SDAYNAME5, LOCALE_SDAYNAME6, LOCALE_SDAYNAME7,
2499 LOCALE_SMONTHNAME1, LOCALE_SMONTHNAME2, LOCALE_SMONTHNAME3,
2500 LOCALE_SMONTHNAME4, LOCALE_SMONTHNAME5, LOCALE_SMONTHNAME6,
2501 LOCALE_SMONTHNAME7, LOCALE_SMONTHNAME8, LOCALE_SMONTHNAME9,
2502 LOCALE_SMONTHNAME10, LOCALE_SMONTHNAME11, LOCALE_SMONTHNAME12
2505 static char *nl_langinfo_buf = NULL;
2506 static int nl_langinfo_len = 0;
2508 if (nl_langinfo_len <= 0)
2509 nl_langinfo_buf = xmalloc (nl_langinfo_len = 1);
2511 if (item < 0 || item >= _NL_NUM)
2512 nl_langinfo_buf[0] = 0;
2513 else
2515 LCID cloc = GetThreadLocale ();
2516 int need_len = GetLocaleInfo (cloc, w32item[item] | LOCALE_USE_CP_ACP,
2517 NULL, 0);
2519 if (need_len <= 0)
2520 nl_langinfo_buf[0] = 0;
2521 else
2523 if (item == CODESET)
2525 need_len += 2; /* for the "cp" prefix */
2526 if (need_len < 8) /* for the case we call GetACP */
2527 need_len = 8;
2529 if (nl_langinfo_len <= need_len)
2530 nl_langinfo_buf = xrealloc (nl_langinfo_buf,
2531 nl_langinfo_len = need_len);
2532 if (!GetLocaleInfo (cloc, w32item[item] | LOCALE_USE_CP_ACP,
2533 nl_langinfo_buf, nl_langinfo_len))
2534 nl_langinfo_buf[0] = 0;
2535 else if (item == CODESET)
2537 if (strcmp (nl_langinfo_buf, "0") == 0 /* CP_ACP */
2538 || strcmp (nl_langinfo_buf, "1") == 0) /* CP_OEMCP */
2539 sprintf (nl_langinfo_buf, "cp%u", GetACP ());
2540 else
2542 memmove (nl_langinfo_buf + 2, nl_langinfo_buf,
2543 strlen (nl_langinfo_buf) + 1);
2544 nl_langinfo_buf[0] = 'c';
2545 nl_langinfo_buf[1] = 'p';
2550 return nl_langinfo_buf;
2552 #endif /* HAVE_LANGINFO_CODESET */
2554 DEFUN ("w32-get-locale-info", Fw32_get_locale_info,
2555 Sw32_get_locale_info, 1, 2, 0,
2556 doc: /* Return information about the Windows locale LCID.
2557 By default, return a three letter locale code which encodes the default
2558 language as the first two characters, and the country or regional variant
2559 as the third letter. For example, ENU refers to `English (United States)',
2560 while ENC means `English (Canadian)'.
2562 If the optional argument LONGFORM is t, the long form of the locale
2563 name is returned, e.g. `English (United States)' instead; if LONGFORM
2564 is a number, it is interpreted as an LCTYPE constant and the corresponding
2565 locale information is returned.
2567 If LCID (a 16-bit number) is not a valid locale, the result is nil. */)
2568 (Lisp_Object lcid, Lisp_Object longform)
2570 int got_abbrev;
2571 int got_full;
2572 char abbrev_name[32] = { 0 };
2573 char full_name[256] = { 0 };
2575 CHECK_NUMBER (lcid);
2577 if (!IsValidLocale (XINT (lcid), LCID_SUPPORTED))
2578 return Qnil;
2580 if (NILP (longform))
2582 got_abbrev = GetLocaleInfo (XINT (lcid),
2583 LOCALE_SABBREVLANGNAME | LOCALE_USE_CP_ACP,
2584 abbrev_name, sizeof (abbrev_name));
2585 if (got_abbrev)
2586 return build_string (abbrev_name);
2588 else if (EQ (longform, Qt))
2590 got_full = GetLocaleInfo (XINT (lcid),
2591 LOCALE_SLANGUAGE | LOCALE_USE_CP_ACP,
2592 full_name, sizeof (full_name));
2593 if (got_full)
2594 return DECODE_SYSTEM (build_string (full_name));
2596 else if (NUMBERP (longform))
2598 got_full = GetLocaleInfo (XINT (lcid),
2599 XINT (longform),
2600 full_name, sizeof (full_name));
2601 /* GetLocaleInfo's return value includes the terminating null
2602 character, when the returned information is a string, whereas
2603 make_unibyte_string needs the string length without the
2604 terminating null. */
2605 if (got_full)
2606 return make_unibyte_string (full_name, got_full - 1);
2609 return Qnil;
2613 DEFUN ("w32-get-current-locale-id", Fw32_get_current_locale_id,
2614 Sw32_get_current_locale_id, 0, 0, 0,
2615 doc: /* Return Windows locale id for current locale setting.
2616 This is a numerical value; use `w32-get-locale-info' to convert to a
2617 human-readable form. */)
2618 (void)
2620 return make_number (GetThreadLocale ());
2623 static DWORD
2624 int_from_hex (char * s)
2626 DWORD val = 0;
2627 static char hex[] = "0123456789abcdefABCDEF";
2628 char * p;
2630 while (*s && (p = strchr (hex, *s)) != NULL)
2632 unsigned digit = p - hex;
2633 if (digit > 15)
2634 digit -= 6;
2635 val = val * 16 + digit;
2636 s++;
2638 return val;
2641 /* We need to build a global list, since the EnumSystemLocale callback
2642 function isn't given a context pointer. */
2643 Lisp_Object Vw32_valid_locale_ids;
2645 static BOOL CALLBACK
2646 enum_locale_fn (LPTSTR localeNum)
2648 DWORD id = int_from_hex (localeNum);
2649 Vw32_valid_locale_ids = Fcons (make_number (id), Vw32_valid_locale_ids);
2650 return TRUE;
2653 DEFUN ("w32-get-valid-locale-ids", Fw32_get_valid_locale_ids,
2654 Sw32_get_valid_locale_ids, 0, 0, 0,
2655 doc: /* Return list of all valid Windows locale ids.
2656 Each id is a numerical value; use `w32-get-locale-info' to convert to a
2657 human-readable form. */)
2658 (void)
2660 Vw32_valid_locale_ids = Qnil;
2662 EnumSystemLocales (enum_locale_fn, LCID_SUPPORTED);
2664 Vw32_valid_locale_ids = Fnreverse (Vw32_valid_locale_ids);
2665 return Vw32_valid_locale_ids;
2669 DEFUN ("w32-get-default-locale-id", Fw32_get_default_locale_id, Sw32_get_default_locale_id, 0, 1, 0,
2670 doc: /* Return Windows locale id for default locale setting.
2671 By default, the system default locale setting is returned; if the optional
2672 parameter USERP is non-nil, the user default locale setting is returned.
2673 This is a numerical value; use `w32-get-locale-info' to convert to a
2674 human-readable form. */)
2675 (Lisp_Object userp)
2677 if (NILP (userp))
2678 return make_number (GetSystemDefaultLCID ());
2679 return make_number (GetUserDefaultLCID ());
2683 DEFUN ("w32-set-current-locale", Fw32_set_current_locale, Sw32_set_current_locale, 1, 1, 0,
2684 doc: /* Make Windows locale LCID be the current locale setting for Emacs.
2685 If successful, the new locale id is returned, otherwise nil. */)
2686 (Lisp_Object lcid)
2688 CHECK_NUMBER (lcid);
2690 if (!IsValidLocale (XINT (lcid), LCID_SUPPORTED))
2691 return Qnil;
2693 if (!SetThreadLocale (XINT (lcid)))
2694 return Qnil;
2696 /* Need to set input thread locale if present. */
2697 if (dwWindowsThreadId)
2698 /* Reply is not needed. */
2699 PostThreadMessage (dwWindowsThreadId, WM_EMACS_SETLOCALE, XINT (lcid), 0);
2701 return make_number (GetThreadLocale ());
2705 /* We need to build a global list, since the EnumCodePages callback
2706 function isn't given a context pointer. */
2707 Lisp_Object Vw32_valid_codepages;
2709 static BOOL CALLBACK
2710 enum_codepage_fn (LPTSTR codepageNum)
2712 DWORD id = atoi (codepageNum);
2713 Vw32_valid_codepages = Fcons (make_number (id), Vw32_valid_codepages);
2714 return TRUE;
2717 DEFUN ("w32-get-valid-codepages", Fw32_get_valid_codepages,
2718 Sw32_get_valid_codepages, 0, 0, 0,
2719 doc: /* Return list of all valid Windows codepages. */)
2720 (void)
2722 Vw32_valid_codepages = Qnil;
2724 EnumSystemCodePages (enum_codepage_fn, CP_SUPPORTED);
2726 Vw32_valid_codepages = Fnreverse (Vw32_valid_codepages);
2727 return Vw32_valid_codepages;
2731 DEFUN ("w32-get-console-codepage", Fw32_get_console_codepage,
2732 Sw32_get_console_codepage, 0, 0, 0,
2733 doc: /* Return current Windows codepage for console input. */)
2734 (void)
2736 return make_number (GetConsoleCP ());
2740 DEFUN ("w32-set-console-codepage", Fw32_set_console_codepage,
2741 Sw32_set_console_codepage, 1, 1, 0,
2742 doc: /* Make Windows codepage CP be the codepage for Emacs tty keyboard input.
2743 This codepage setting affects keyboard input in tty mode.
2744 If successful, the new CP is returned, otherwise nil. */)
2745 (Lisp_Object cp)
2747 CHECK_NUMBER (cp);
2749 if (!IsValidCodePage (XINT (cp)))
2750 return Qnil;
2752 if (!SetConsoleCP (XINT (cp)))
2753 return Qnil;
2755 return make_number (GetConsoleCP ());
2759 DEFUN ("w32-get-console-output-codepage", Fw32_get_console_output_codepage,
2760 Sw32_get_console_output_codepage, 0, 0, 0,
2761 doc: /* Return current Windows codepage for console output. */)
2762 (void)
2764 return make_number (GetConsoleOutputCP ());
2768 DEFUN ("w32-set-console-output-codepage", Fw32_set_console_output_codepage,
2769 Sw32_set_console_output_codepage, 1, 1, 0,
2770 doc: /* Make Windows codepage CP be the codepage for Emacs console output.
2771 This codepage setting affects display in tty mode.
2772 If successful, the new CP is returned, otherwise nil. */)
2773 (Lisp_Object cp)
2775 CHECK_NUMBER (cp);
2777 if (!IsValidCodePage (XINT (cp)))
2778 return Qnil;
2780 if (!SetConsoleOutputCP (XINT (cp)))
2781 return Qnil;
2783 return make_number (GetConsoleOutputCP ());
2787 DEFUN ("w32-get-codepage-charset", Fw32_get_codepage_charset,
2788 Sw32_get_codepage_charset, 1, 1, 0,
2789 doc: /* Return charset ID corresponding to codepage CP.
2790 Returns nil if the codepage is not valid. */)
2791 (Lisp_Object cp)
2793 CHARSETINFO info;
2795 CHECK_NUMBER (cp);
2797 if (!IsValidCodePage (XINT (cp)))
2798 return Qnil;
2800 if (TranslateCharsetInfo ((DWORD *) XINT (cp), &info, TCI_SRCCODEPAGE))
2801 return make_number (info.ciCharset);
2803 return Qnil;
2807 DEFUN ("w32-get-valid-keyboard-layouts", Fw32_get_valid_keyboard_layouts,
2808 Sw32_get_valid_keyboard_layouts, 0, 0, 0,
2809 doc: /* Return list of Windows keyboard languages and layouts.
2810 The return value is a list of pairs of language id and layout id. */)
2811 (void)
2813 int num_layouts = GetKeyboardLayoutList (0, NULL);
2814 HKL * layouts = (HKL *) alloca (num_layouts * sizeof (HKL));
2815 Lisp_Object obj = Qnil;
2817 if (GetKeyboardLayoutList (num_layouts, layouts) == num_layouts)
2819 while (--num_layouts >= 0)
2821 DWORD kl = (DWORD) layouts[num_layouts];
2823 obj = Fcons (Fcons (make_number (kl & 0xffff),
2824 make_number ((kl >> 16) & 0xffff)),
2825 obj);
2829 return obj;
2833 DEFUN ("w32-get-keyboard-layout", Fw32_get_keyboard_layout,
2834 Sw32_get_keyboard_layout, 0, 0, 0,
2835 doc: /* Return current Windows keyboard language and layout.
2836 The return value is the cons of the language id and the layout id. */)
2837 (void)
2839 DWORD kl = (DWORD) GetKeyboardLayout (dwWindowsThreadId);
2841 return Fcons (make_number (kl & 0xffff),
2842 make_number ((kl >> 16) & 0xffff));
2846 DEFUN ("w32-set-keyboard-layout", Fw32_set_keyboard_layout,
2847 Sw32_set_keyboard_layout, 1, 1, 0,
2848 doc: /* Make LAYOUT be the current keyboard layout for Emacs.
2849 The keyboard layout setting affects interpretation of keyboard input.
2850 If successful, the new layout id is returned, otherwise nil. */)
2851 (Lisp_Object layout)
2853 DWORD kl;
2855 CHECK_CONS (layout);
2856 CHECK_NUMBER_CAR (layout);
2857 CHECK_NUMBER_CDR (layout);
2859 kl = (XINT (XCAR (layout)) & 0xffff)
2860 | (XINT (XCDR (layout)) << 16);
2862 /* Synchronize layout with input thread. */
2863 if (dwWindowsThreadId)
2865 if (PostThreadMessage (dwWindowsThreadId, WM_EMACS_SETKEYBOARDLAYOUT,
2866 (WPARAM) kl, 0))
2868 MSG msg;
2869 GetMessage (&msg, NULL, WM_EMACS_DONE, WM_EMACS_DONE);
2871 if (msg.wParam == 0)
2872 return Qnil;
2875 else if (!ActivateKeyboardLayout ((HKL) kl, 0))
2876 return Qnil;
2878 return Fw32_get_keyboard_layout ();
2882 void
2883 syms_of_ntproc (void)
2885 DEFSYM (Qhigh, "high");
2886 DEFSYM (Qlow, "low");
2888 defsubr (&Sw32_has_winsock);
2889 defsubr (&Sw32_unload_winsock);
2891 defsubr (&Sw32_short_file_name);
2892 defsubr (&Sw32_long_file_name);
2893 defsubr (&Sw32_set_process_priority);
2894 defsubr (&Sw32_get_locale_info);
2895 defsubr (&Sw32_get_current_locale_id);
2896 defsubr (&Sw32_get_default_locale_id);
2897 defsubr (&Sw32_get_valid_locale_ids);
2898 defsubr (&Sw32_set_current_locale);
2900 defsubr (&Sw32_get_console_codepage);
2901 defsubr (&Sw32_set_console_codepage);
2902 defsubr (&Sw32_get_console_output_codepage);
2903 defsubr (&Sw32_set_console_output_codepage);
2904 defsubr (&Sw32_get_valid_codepages);
2905 defsubr (&Sw32_get_codepage_charset);
2907 defsubr (&Sw32_get_valid_keyboard_layouts);
2908 defsubr (&Sw32_get_keyboard_layout);
2909 defsubr (&Sw32_set_keyboard_layout);
2911 DEFVAR_LISP ("w32-quote-process-args", Vw32_quote_process_args,
2912 doc: /* Non-nil enables quoting of process arguments to ensure correct parsing.
2913 Because Windows does not directly pass argv arrays to child processes,
2914 programs have to reconstruct the argv array by parsing the command
2915 line string. For an argument to contain a space, it must be enclosed
2916 in double quotes or it will be parsed as multiple arguments.
2918 If the value is a character, that character will be used to escape any
2919 quote characters that appear, otherwise a suitable escape character
2920 will be chosen based on the type of the program. */);
2921 Vw32_quote_process_args = Qt;
2923 DEFVAR_LISP ("w32-start-process-show-window",
2924 Vw32_start_process_show_window,
2925 doc: /* When nil, new child processes hide their windows.
2926 When non-nil, they show their window in the method of their choice.
2927 This variable doesn't affect GUI applications, which will never be hidden. */);
2928 Vw32_start_process_show_window = Qnil;
2930 DEFVAR_LISP ("w32-start-process-share-console",
2931 Vw32_start_process_share_console,
2932 doc: /* When nil, new child processes are given a new console.
2933 When non-nil, they share the Emacs console; this has the limitation of
2934 allowing only one DOS subprocess to run at a time (whether started directly
2935 or indirectly by Emacs), and preventing Emacs from cleanly terminating the
2936 subprocess group, but may allow Emacs to interrupt a subprocess that doesn't
2937 otherwise respond to interrupts from Emacs. */);
2938 Vw32_start_process_share_console = Qnil;
2940 DEFVAR_LISP ("w32-start-process-inherit-error-mode",
2941 Vw32_start_process_inherit_error_mode,
2942 doc: /* When nil, new child processes revert to the default error mode.
2943 When non-nil, they inherit their error mode setting from Emacs, which stops
2944 them blocking when trying to access unmounted drives etc. */);
2945 Vw32_start_process_inherit_error_mode = Qt;
2947 DEFVAR_INT ("w32-pipe-read-delay", w32_pipe_read_delay,
2948 doc: /* Forced delay before reading subprocess output.
2949 This is done to improve the buffering of subprocess output, by
2950 avoiding the inefficiency of frequently reading small amounts of data.
2952 If positive, the value is the number of milliseconds to sleep before
2953 reading the subprocess output. If negative, the magnitude is the number
2954 of time slices to wait (effectively boosting the priority of the child
2955 process temporarily). A value of zero disables waiting entirely. */);
2956 w32_pipe_read_delay = 50;
2958 DEFVAR_LISP ("w32-downcase-file-names", Vw32_downcase_file_names,
2959 doc: /* Non-nil means convert all-upper case file names to lower case.
2960 This applies when performing completions and file name expansion.
2961 Note that the value of this setting also affects remote file names,
2962 so you probably don't want to set to non-nil if you use case-sensitive
2963 filesystems via ange-ftp. */);
2964 Vw32_downcase_file_names = Qnil;
2966 #if 0
2967 DEFVAR_LISP ("w32-generate-fake-inodes", Vw32_generate_fake_inodes,
2968 doc: /* Non-nil means attempt to fake realistic inode values.
2969 This works by hashing the truename of files, and should detect
2970 aliasing between long and short (8.3 DOS) names, but can have
2971 false positives because of hash collisions. Note that determining
2972 the truename of a file can be slow. */);
2973 Vw32_generate_fake_inodes = Qnil;
2974 #endif
2976 DEFVAR_LISP ("w32-get-true-file-attributes", Vw32_get_true_file_attributes,
2977 doc: /* Non-nil means determine accurate file attributes in `file-attributes'.
2978 This option controls whether to issue additional system calls to determine
2979 accurate link counts, file type, and ownership information. It is more
2980 useful for files on NTFS volumes, where hard links and file security are
2981 supported, than on volumes of the FAT family.
2983 Without these system calls, link count will always be reported as 1 and file
2984 ownership will be attributed to the current user.
2985 The default value `local' means only issue these system calls for files
2986 on local fixed drives. A value of nil means never issue them.
2987 Any other non-nil value means do this even on remote and removable drives
2988 where the performance impact may be noticeable even on modern hardware. */);
2989 Vw32_get_true_file_attributes = Qlocal;
2991 staticpro (&Vw32_valid_locale_ids);
2992 staticpro (&Vw32_valid_codepages);
2994 /* end of w32proc.c */