Merge from emacs-24; up to 2012-11-13T18:57:26Z!dgutov@yandex.ru
[emacs.git] / src / w32proc.c
blob10dd23003b8e51efb7ccf63f309fc3522d68b100
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;
233 pid_t
234 getpgrp (void)
236 return getpid ();
239 pid_t
240 tcgetpgrp (int fd)
242 return getpid ();
246 setpgid (pid_t pid, pid_t pgid)
248 return 0;
251 pid_t
252 setsid (void)
254 return getpid ();
257 /* Emulations of interval timers.
259 Limitations: only ITIMER_REAL and ITIMER_PROF are supported.
261 Implementation: a separate thread is started for each timer type,
262 the thread calls the appropriate signal handler when the timer
263 expires, after stopping the thread which installed the timer. */
265 struct itimer_data {
266 volatile ULONGLONG expire;
267 volatile ULONGLONG reload;
268 volatile int terminate;
269 int type;
270 HANDLE caller_thread;
271 HANDLE timer_thread;
274 static ULONGLONG ticks_now;
275 static struct itimer_data real_itimer, prof_itimer;
276 static ULONGLONG clocks_min;
277 /* If non-zero, itimers are disabled. Used during shutdown, when we
278 delete the critical sections used by the timer threads. */
279 static int disable_itimers;
281 static CRITICAL_SECTION crit_real, crit_prof;
283 /* GetThreadTimes is not available on Windows 9X and possibly also on 2K. */
284 typedef BOOL (WINAPI *GetThreadTimes_Proc) (
285 HANDLE hThread,
286 LPFILETIME lpCreationTime,
287 LPFILETIME lpExitTime,
288 LPFILETIME lpKernelTime,
289 LPFILETIME lpUserTime);
291 static GetThreadTimes_Proc s_pfn_Get_Thread_Times;
293 #define MAX_SINGLE_SLEEP 30
294 #define TIMER_TICKS_PER_SEC 1000
296 /* Return a suitable time value, in 1-ms units, for THREAD, a handle
297 to a thread. If THREAD is NULL or an invalid handle, return the
298 current wall-clock time since January 1, 1601 (UTC). Otherwise,
299 return the sum of kernel and user times used by THREAD since it was
300 created, plus its creation time. */
301 static ULONGLONG
302 w32_get_timer_time (HANDLE thread)
304 ULONGLONG retval;
305 int use_system_time = 1;
306 /* The functions below return times in 100-ns units. */
307 const int tscale = 10 * TIMER_TICKS_PER_SEC;
309 if (thread && thread != INVALID_HANDLE_VALUE
310 && s_pfn_Get_Thread_Times != NULL)
312 FILETIME creation_ftime, exit_ftime, kernel_ftime, user_ftime;
313 ULARGE_INTEGER temp_creation, temp_kernel, temp_user;
315 if (s_pfn_Get_Thread_Times (thread, &creation_ftime, &exit_ftime,
316 &kernel_ftime, &user_ftime))
318 use_system_time = 0;
319 temp_creation.LowPart = creation_ftime.dwLowDateTime;
320 temp_creation.HighPart = creation_ftime.dwHighDateTime;
321 temp_kernel.LowPart = kernel_ftime.dwLowDateTime;
322 temp_kernel.HighPart = kernel_ftime.dwHighDateTime;
323 temp_user.LowPart = user_ftime.dwLowDateTime;
324 temp_user.HighPart = user_ftime.dwHighDateTime;
325 retval =
326 temp_creation.QuadPart / tscale + temp_kernel.QuadPart / tscale
327 + temp_user.QuadPart / tscale;
329 else
330 DebPrint (("GetThreadTimes failed with error code %lu\n",
331 GetLastError ()));
334 if (use_system_time)
336 FILETIME current_ftime;
337 ULARGE_INTEGER temp;
339 GetSystemTimeAsFileTime (&current_ftime);
341 temp.LowPart = current_ftime.dwLowDateTime;
342 temp.HighPart = current_ftime.dwHighDateTime;
344 retval = temp.QuadPart / tscale;
347 return retval;
350 /* Thread function for a timer thread. */
351 static DWORD WINAPI
352 timer_loop (LPVOID arg)
354 struct itimer_data *itimer = (struct itimer_data *)arg;
355 int which = itimer->type;
356 int sig = (which == ITIMER_REAL) ? SIGALRM : SIGPROF;
357 CRITICAL_SECTION *crit = (which == ITIMER_REAL) ? &crit_real : &crit_prof;
358 const DWORD max_sleep = MAX_SINGLE_SLEEP * 1000 / TIMER_TICKS_PER_SEC;
359 HANDLE hth = (which == ITIMER_REAL) ? NULL : itimer->caller_thread;
361 while (1)
363 DWORD sleep_time;
364 signal_handler handler;
365 ULONGLONG now, expire, reload;
367 /* Load new values if requested by setitimer. */
368 EnterCriticalSection (crit);
369 expire = itimer->expire;
370 reload = itimer->reload;
371 LeaveCriticalSection (crit);
372 if (itimer->terminate)
373 return 0;
375 if (expire == 0)
377 /* We are idle. */
378 Sleep (max_sleep);
379 continue;
382 if (expire > (now = w32_get_timer_time (hth)))
383 sleep_time = expire - now;
384 else
385 sleep_time = 0;
386 /* Don't sleep too long at a time, to be able to see the
387 termination flag without too long a delay. */
388 while (sleep_time > max_sleep)
390 if (itimer->terminate)
391 return 0;
392 Sleep (max_sleep);
393 EnterCriticalSection (crit);
394 expire = itimer->expire;
395 LeaveCriticalSection (crit);
396 sleep_time =
397 (expire > (now = w32_get_timer_time (hth))) ? expire - now : 0;
399 if (itimer->terminate)
400 return 0;
401 if (sleep_time > 0)
403 Sleep (sleep_time * 1000 / TIMER_TICKS_PER_SEC);
404 /* Always sleep past the expiration time, to make sure we
405 never call the handler _before_ the expiration time,
406 always slightly after it. Sleep(5) makes sure we don't
407 hog the CPU by calling 'w32_get_timer_time' with high
408 frequency, and also let other threads work. */
409 while (w32_get_timer_time (hth) < expire)
410 Sleep (5);
413 EnterCriticalSection (crit);
414 expire = itimer->expire;
415 LeaveCriticalSection (crit);
416 if (expire == 0)
417 continue;
419 /* Time's up. */
420 handler = sig_handlers[sig];
421 if (!(handler == SIG_DFL || handler == SIG_IGN || handler == SIG_ERR)
422 /* FIXME: Don't ignore masked signals. Instead, record that
423 they happened and reissue them when the signal is
424 unblocked. */
425 && !sigismember (&sig_mask, sig)
426 /* Simulate masking of SIGALRM and SIGPROF when processing
427 fatal signals. */
428 && !fatal_error_in_progress
429 && itimer->caller_thread)
431 /* Simulate a signal delivered to the thread which installed
432 the timer, by suspending that thread while the handler
433 runs. */
434 HANDLE th = itimer->caller_thread;
435 DWORD result = SuspendThread (th);
437 if (result == (DWORD)-1)
438 return 2;
440 handler (sig);
441 ResumeThread (th);
444 /* Update expiration time and loop. */
445 EnterCriticalSection (crit);
446 expire = itimer->expire;
447 if (expire == 0)
449 LeaveCriticalSection (crit);
450 continue;
452 reload = itimer->reload;
453 if (reload > 0)
455 now = w32_get_timer_time (hth);
456 if (expire <= now)
458 ULONGLONG lag = now - expire;
460 /* If we missed some opportunities (presumably while
461 sleeping or while the signal handler ran), skip
462 them. */
463 if (lag > reload)
464 expire = now - (lag % reload);
466 expire += reload;
469 else
470 expire = 0; /* become idle */
471 itimer->expire = expire;
472 LeaveCriticalSection (crit);
474 return 0;
477 static void
478 stop_timer_thread (int which)
480 struct itimer_data *itimer =
481 (which == ITIMER_REAL) ? &real_itimer : &prof_itimer;
482 int i;
483 DWORD err, exit_code = 255;
484 BOOL status;
486 /* Signal the thread that it should terminate. */
487 itimer->terminate = 1;
489 if (itimer->timer_thread == NULL)
490 return;
492 /* Wait for the timer thread to terminate voluntarily, then kill it
493 if it doesn't. This loop waits twice more than the maximum
494 amount of time a timer thread sleeps, see above. */
495 for (i = 0; i < MAX_SINGLE_SLEEP / 5; i++)
497 if (!((status = GetExitCodeThread (itimer->timer_thread, &exit_code))
498 && exit_code == STILL_ACTIVE))
499 break;
500 Sleep (10);
502 if ((status == FALSE && (err = GetLastError ()) == ERROR_INVALID_HANDLE)
503 || exit_code == STILL_ACTIVE)
505 if (!(status == FALSE && err == ERROR_INVALID_HANDLE))
506 TerminateThread (itimer->timer_thread, 0);
509 /* Clean up. */
510 CloseHandle (itimer->timer_thread);
511 itimer->timer_thread = NULL;
512 if (itimer->caller_thread)
514 CloseHandle (itimer->caller_thread);
515 itimer->caller_thread = NULL;
519 /* This is called at shutdown time from term_ntproc. */
520 void
521 term_timers (void)
523 if (real_itimer.timer_thread)
524 stop_timer_thread (ITIMER_REAL);
525 if (prof_itimer.timer_thread)
526 stop_timer_thread (ITIMER_PROF);
528 /* We are going to delete the critical sections, so timers cannot
529 work after this. */
530 disable_itimers = 1;
532 DeleteCriticalSection (&crit_real);
533 DeleteCriticalSection (&crit_prof);
534 DeleteCriticalSection (&crit_sig);
537 /* This is called at initialization time from init_ntproc. */
538 void
539 init_timers (void)
541 /* GetThreadTimes is not available on all versions of Windows, so
542 need to probe for its availability dynamically, and call it
543 through a pointer. */
544 s_pfn_Get_Thread_Times = NULL; /* in case dumped Emacs comes with a value */
545 if (os_subtype != OS_9X)
546 s_pfn_Get_Thread_Times =
547 (GetThreadTimes_Proc)GetProcAddress (GetModuleHandle ("kernel32.dll"),
548 "GetThreadTimes");
550 /* Make sure we start with zeroed out itimer structures, since
551 dumping may have left there traces of threads long dead. */
552 memset (&real_itimer, 0, sizeof real_itimer);
553 memset (&prof_itimer, 0, sizeof prof_itimer);
555 InitializeCriticalSection (&crit_real);
556 InitializeCriticalSection (&crit_prof);
557 InitializeCriticalSection (&crit_sig);
559 disable_itimers = 0;
562 static int
563 start_timer_thread (int which)
565 DWORD exit_code;
566 HANDLE th;
567 struct itimer_data *itimer =
568 (which == ITIMER_REAL) ? &real_itimer : &prof_itimer;
570 if (itimer->timer_thread
571 && GetExitCodeThread (itimer->timer_thread, &exit_code)
572 && exit_code == STILL_ACTIVE)
573 return 0;
575 /* Clean up after possibly exited thread. */
576 if (itimer->timer_thread)
578 CloseHandle (itimer->timer_thread);
579 itimer->timer_thread = NULL;
581 if (itimer->caller_thread)
583 CloseHandle (itimer->caller_thread);
584 itimer->caller_thread = NULL;
587 /* Start a new thread. */
588 if (!DuplicateHandle (GetCurrentProcess (), GetCurrentThread (),
589 GetCurrentProcess (), &th, 0, FALSE,
590 DUPLICATE_SAME_ACCESS))
592 errno = ESRCH;
593 return -1;
595 itimer->terminate = 0;
596 itimer->type = which;
597 itimer->caller_thread = th;
598 /* Request that no more than 64KB of stack be reserved for this
599 thread, to avoid reserving too much memory, which would get in
600 the way of threads we start to wait for subprocesses. See also
601 new_child below. */
602 itimer->timer_thread = CreateThread (NULL, 64 * 1024, timer_loop,
603 (void *)itimer, 0x00010000, NULL);
605 if (!itimer->timer_thread)
607 CloseHandle (itimer->caller_thread);
608 itimer->caller_thread = NULL;
609 errno = EAGAIN;
610 return -1;
613 /* This is needed to make sure that the timer thread running for
614 profiling gets CPU as soon as the Sleep call terminates. */
615 if (which == ITIMER_PROF)
616 SetThreadPriority (itimer->timer_thread, THREAD_PRIORITY_TIME_CRITICAL);
618 return 0;
621 /* Most of the code of getitimer and setitimer (but not of their
622 subroutines) was shamelessly stolen from itimer.c in the DJGPP
623 library, see www.delorie.com/djgpp. */
625 getitimer (int which, struct itimerval *value)
627 volatile ULONGLONG *t_expire;
628 volatile ULONGLONG *t_reload;
629 ULONGLONG expire, reload;
630 __int64 usecs;
631 CRITICAL_SECTION *crit;
632 struct itimer_data *itimer;
634 if (disable_itimers)
635 return -1;
637 if (!value)
639 errno = EFAULT;
640 return -1;
643 if (which != ITIMER_REAL && which != ITIMER_PROF)
645 errno = EINVAL;
646 return -1;
649 itimer = (which == ITIMER_REAL) ? &real_itimer : &prof_itimer;
651 ticks_now = w32_get_timer_time ((which == ITIMER_REAL)
652 ? NULL
653 : GetCurrentThread ());
655 t_expire = &itimer->expire;
656 t_reload = &itimer->reload;
657 crit = (which == ITIMER_REAL) ? &crit_real : &crit_prof;
659 EnterCriticalSection (crit);
660 reload = *t_reload;
661 expire = *t_expire;
662 LeaveCriticalSection (crit);
664 if (expire)
665 expire -= ticks_now;
667 value->it_value.tv_sec = expire / TIMER_TICKS_PER_SEC;
668 usecs =
669 (expire % TIMER_TICKS_PER_SEC) * (__int64)1000000 / TIMER_TICKS_PER_SEC;
670 value->it_value.tv_usec = usecs;
671 value->it_interval.tv_sec = reload / TIMER_TICKS_PER_SEC;
672 usecs =
673 (reload % TIMER_TICKS_PER_SEC) * (__int64)1000000 / TIMER_TICKS_PER_SEC;
674 value->it_interval.tv_usec= usecs;
676 return 0;
680 setitimer(int which, struct itimerval *value, struct itimerval *ovalue)
682 volatile ULONGLONG *t_expire, *t_reload;
683 ULONGLONG expire, reload, expire_old, reload_old;
684 __int64 usecs;
685 CRITICAL_SECTION *crit;
686 struct itimerval tem, *ptem;
688 if (disable_itimers)
689 return -1;
691 /* Posix systems expect timer values smaller than the resolution of
692 the system clock be rounded up to the clock resolution. First
693 time we are called, measure the clock tick resolution. */
694 if (!clocks_min)
696 ULONGLONG t1, t2;
698 for (t1 = w32_get_timer_time (NULL);
699 (t2 = w32_get_timer_time (NULL)) == t1; )
701 clocks_min = t2 - t1;
704 if (ovalue)
705 ptem = ovalue;
706 else
707 ptem = &tem;
709 if (getitimer (which, ptem)) /* also sets ticks_now */
710 return -1; /* errno already set */
712 t_expire =
713 (which == ITIMER_REAL) ? &real_itimer.expire : &prof_itimer.expire;
714 t_reload =
715 (which == ITIMER_REAL) ? &real_itimer.reload : &prof_itimer.reload;
717 crit = (which == ITIMER_REAL) ? &crit_real : &crit_prof;
719 if (!value
720 || (value->it_value.tv_sec == 0 && value->it_value.tv_usec == 0))
722 EnterCriticalSection (crit);
723 /* Disable the timer. */
724 *t_expire = 0;
725 *t_reload = 0;
726 LeaveCriticalSection (crit);
727 return 0;
730 reload = value->it_interval.tv_sec * TIMER_TICKS_PER_SEC;
732 usecs = value->it_interval.tv_usec;
733 if (value->it_interval.tv_sec == 0
734 && usecs && usecs * TIMER_TICKS_PER_SEC < clocks_min * 1000000)
735 reload = clocks_min;
736 else
738 usecs *= TIMER_TICKS_PER_SEC;
739 reload += usecs / 1000000;
742 expire = value->it_value.tv_sec * TIMER_TICKS_PER_SEC;
743 usecs = value->it_value.tv_usec;
744 if (value->it_value.tv_sec == 0
745 && usecs * TIMER_TICKS_PER_SEC < clocks_min * 1000000)
746 expire = clocks_min;
747 else
749 usecs *= TIMER_TICKS_PER_SEC;
750 expire += usecs / 1000000;
753 expire += ticks_now;
755 EnterCriticalSection (crit);
756 expire_old = *t_expire;
757 reload_old = *t_reload;
758 if (!(expire == expire_old && reload == reload_old))
760 *t_reload = reload;
761 *t_expire = expire;
763 LeaveCriticalSection (crit);
765 return start_timer_thread (which);
769 alarm (int seconds)
771 #ifdef HAVE_SETITIMER
772 struct itimerval new_values, old_values;
774 new_values.it_value.tv_sec = seconds;
775 new_values.it_value.tv_usec = 0;
776 new_values.it_interval.tv_sec = new_values.it_interval.tv_usec = 0;
778 if (setitimer (ITIMER_REAL, &new_values, &old_values) < 0)
779 return 0;
780 return old_values.it_value.tv_sec;
781 #else
782 return seconds;
783 #endif
786 /* Defined in <process.h> which conflicts with the local copy */
787 #define _P_NOWAIT 1
789 /* Child process management list. */
790 int child_proc_count = 0;
791 child_process child_procs[ MAX_CHILDREN ];
792 child_process *dead_child = NULL;
794 static DWORD WINAPI reader_thread (void *arg);
796 /* Find an unused process slot. */
797 child_process *
798 new_child (void)
800 child_process *cp;
801 DWORD id;
803 for (cp = child_procs + (child_proc_count-1); cp >= child_procs; cp--)
804 if (!CHILD_ACTIVE (cp))
805 goto Initialize;
806 if (child_proc_count == MAX_CHILDREN)
807 return NULL;
808 cp = &child_procs[child_proc_count++];
810 Initialize:
811 memset (cp, 0, sizeof (*cp));
812 cp->fd = -1;
813 cp->pid = -1;
814 cp->procinfo.hProcess = NULL;
815 cp->status = STATUS_READ_ERROR;
817 /* use manual reset event so that select() will function properly */
818 cp->char_avail = CreateEvent (NULL, TRUE, FALSE, NULL);
819 if (cp->char_avail)
821 cp->char_consumed = CreateEvent (NULL, FALSE, FALSE, NULL);
822 if (cp->char_consumed)
824 /* The 0x00010000 flag is STACK_SIZE_PARAM_IS_A_RESERVATION.
825 It means that the 64K stack we are requesting in the 2nd
826 argument is how much memory should be reserved for the
827 stack. If we don't use this flag, the memory requested
828 by the 2nd argument is the amount actually _committed_,
829 but Windows reserves 8MB of memory for each thread's
830 stack. (The 8MB figure comes from the -stack
831 command-line argument we pass to the linker when building
832 Emacs, but that's because we need a large stack for
833 Emacs's main thread.) Since we request 2GB of reserved
834 memory at startup (see w32heap.c), which is close to the
835 maximum memory available for a 32-bit process on Windows,
836 the 8MB reservation for each thread causes failures in
837 starting subprocesses, because we create a thread running
838 reader_thread for each subprocess. As 8MB of stack is
839 way too much for reader_thread, forcing Windows to
840 reserve less wins the day. */
841 cp->thrd = CreateThread (NULL, 64 * 1024, reader_thread, cp,
842 0x00010000, &id);
843 if (cp->thrd)
844 return cp;
847 delete_child (cp);
848 return NULL;
851 void
852 delete_child (child_process *cp)
854 int i;
856 /* Should not be deleting a child that is still needed. */
857 for (i = 0; i < MAXDESC; i++)
858 if (fd_info[i].cp == cp)
859 emacs_abort ();
861 if (!CHILD_ACTIVE (cp))
862 return;
864 /* reap thread if necessary */
865 if (cp->thrd)
867 DWORD rc;
869 if (GetExitCodeThread (cp->thrd, &rc) && rc == STILL_ACTIVE)
871 /* let the thread exit cleanly if possible */
872 cp->status = STATUS_READ_ERROR;
873 SetEvent (cp->char_consumed);
874 #if 0
875 /* We used to forcibly terminate the thread here, but it
876 is normally unnecessary, and in abnormal cases, the worst that
877 will happen is we have an extra idle thread hanging around
878 waiting for the zombie process. */
879 if (WaitForSingleObject (cp->thrd, 1000) != WAIT_OBJECT_0)
881 DebPrint (("delete_child.WaitForSingleObject (thread) failed "
882 "with %lu for fd %ld\n", GetLastError (), cp->fd));
883 TerminateThread (cp->thrd, 0);
885 #endif
887 CloseHandle (cp->thrd);
888 cp->thrd = NULL;
890 if (cp->char_avail)
892 CloseHandle (cp->char_avail);
893 cp->char_avail = NULL;
895 if (cp->char_consumed)
897 CloseHandle (cp->char_consumed);
898 cp->char_consumed = NULL;
901 /* update child_proc_count (highest numbered slot in use plus one) */
902 if (cp == child_procs + child_proc_count - 1)
904 for (i = child_proc_count-1; i >= 0; i--)
905 if (CHILD_ACTIVE (&child_procs[i]))
907 child_proc_count = i + 1;
908 break;
911 if (i < 0)
912 child_proc_count = 0;
915 /* Find a child by pid. */
916 static child_process *
917 find_child_pid (DWORD pid)
919 child_process *cp;
921 for (cp = child_procs + (child_proc_count-1); cp >= child_procs; cp--)
922 if (CHILD_ACTIVE (cp) && pid == cp->pid)
923 return cp;
924 return NULL;
928 /* Thread proc for child process and socket reader threads. Each thread
929 is normally blocked until woken by select() to check for input by
930 reading one char. When the read completes, char_avail is signaled
931 to wake up the select emulator and the thread blocks itself again. */
932 static DWORD WINAPI
933 reader_thread (void *arg)
935 child_process *cp;
937 /* Our identity */
938 cp = (child_process *)arg;
940 /* We have to wait for the go-ahead before we can start */
941 if (cp == NULL
942 || WaitForSingleObject (cp->char_consumed, INFINITE) != WAIT_OBJECT_0
943 || cp->fd < 0)
944 return 1;
946 for (;;)
948 int rc;
950 if (fd_info[cp->fd].flags & FILE_LISTEN)
951 rc = _sys_wait_accept (cp->fd);
952 else
953 rc = _sys_read_ahead (cp->fd);
955 /* The name char_avail is a misnomer - it really just means the
956 read-ahead has completed, whether successfully or not. */
957 if (!SetEvent (cp->char_avail))
959 DebPrint (("reader_thread.SetEvent failed with %lu for fd %ld\n",
960 GetLastError (), cp->fd));
961 return 1;
964 if (rc == STATUS_READ_ERROR)
965 return 1;
967 /* If the read died, the child has died so let the thread die */
968 if (rc == STATUS_READ_FAILED)
969 break;
971 /* Wait until our input is acknowledged before reading again */
972 if (WaitForSingleObject (cp->char_consumed, INFINITE) != WAIT_OBJECT_0)
974 DebPrint (("reader_thread.WaitForSingleObject failed with "
975 "%lu for fd %ld\n", GetLastError (), cp->fd));
976 break;
979 return 0;
982 /* To avoid Emacs changing directory, we just record here the directory
983 the new process should start in. This is set just before calling
984 sys_spawnve, and is not generally valid at any other time. */
985 static char * process_dir;
987 static BOOL
988 create_child (char *exe, char *cmdline, char *env, int is_gui_app,
989 int * pPid, child_process *cp)
991 STARTUPINFO start;
992 SECURITY_ATTRIBUTES sec_attrs;
993 #if 0
994 SECURITY_DESCRIPTOR sec_desc;
995 #endif
996 DWORD flags;
997 char dir[ MAXPATHLEN ];
999 if (cp == NULL) emacs_abort ();
1001 memset (&start, 0, sizeof (start));
1002 start.cb = sizeof (start);
1004 #ifdef HAVE_NTGUI
1005 if (NILP (Vw32_start_process_show_window) && !is_gui_app)
1006 start.dwFlags = STARTF_USESTDHANDLES | STARTF_USESHOWWINDOW;
1007 else
1008 start.dwFlags = STARTF_USESTDHANDLES;
1009 start.wShowWindow = SW_HIDE;
1011 start.hStdInput = GetStdHandle (STD_INPUT_HANDLE);
1012 start.hStdOutput = GetStdHandle (STD_OUTPUT_HANDLE);
1013 start.hStdError = GetStdHandle (STD_ERROR_HANDLE);
1014 #endif /* HAVE_NTGUI */
1016 #if 0
1017 /* Explicitly specify no security */
1018 if (!InitializeSecurityDescriptor (&sec_desc, SECURITY_DESCRIPTOR_REVISION))
1019 goto EH_Fail;
1020 if (!SetSecurityDescriptorDacl (&sec_desc, TRUE, NULL, FALSE))
1021 goto EH_Fail;
1022 #endif
1023 sec_attrs.nLength = sizeof (sec_attrs);
1024 sec_attrs.lpSecurityDescriptor = NULL /* &sec_desc */;
1025 sec_attrs.bInheritHandle = FALSE;
1027 strcpy (dir, process_dir);
1028 unixtodos_filename (dir);
1030 flags = (!NILP (Vw32_start_process_share_console)
1031 ? CREATE_NEW_PROCESS_GROUP
1032 : CREATE_NEW_CONSOLE);
1033 if (NILP (Vw32_start_process_inherit_error_mode))
1034 flags |= CREATE_DEFAULT_ERROR_MODE;
1035 if (!CreateProcess (exe, cmdline, &sec_attrs, NULL, TRUE,
1036 flags, env, dir, &start, &cp->procinfo))
1037 goto EH_Fail;
1039 cp->pid = (int) cp->procinfo.dwProcessId;
1041 /* Hack for Windows 95, which assigns large (ie negative) pids */
1042 if (cp->pid < 0)
1043 cp->pid = -cp->pid;
1045 /* pid must fit in a Lisp_Int */
1046 cp->pid = cp->pid & INTMASK;
1048 *pPid = cp->pid;
1050 return TRUE;
1052 EH_Fail:
1053 DebPrint (("create_child.CreateProcess failed: %ld\n", GetLastError ()););
1054 return FALSE;
1057 /* create_child doesn't know what emacs' file handle will be for waiting
1058 on output from the child, so we need to make this additional call
1059 to register the handle with the process
1060 This way the select emulator knows how to match file handles with
1061 entries in child_procs. */
1062 void
1063 register_child (int pid, int fd)
1065 child_process *cp;
1067 cp = find_child_pid (pid);
1068 if (cp == NULL)
1070 DebPrint (("register_child unable to find pid %lu\n", pid));
1071 return;
1074 #ifdef FULL_DEBUG
1075 DebPrint (("register_child registered fd %d with pid %lu\n", fd, pid));
1076 #endif
1078 cp->fd = fd;
1080 /* thread is initially blocked until select is called; set status so
1081 that select will release thread */
1082 cp->status = STATUS_READ_ACKNOWLEDGED;
1084 /* attach child_process to fd_info */
1085 if (fd_info[fd].cp != NULL)
1087 DebPrint (("register_child: fd_info[%d] apparently in use!\n", fd));
1088 emacs_abort ();
1091 fd_info[fd].cp = cp;
1094 /* When a process dies its pipe will break so the reader thread will
1095 signal failure to the select emulator.
1096 The select emulator then calls this routine to clean up.
1097 Since the thread signaled failure we can assume it is exiting. */
1098 static void
1099 reap_subprocess (child_process *cp)
1101 if (cp->procinfo.hProcess)
1103 /* Reap the process */
1104 #ifdef FULL_DEBUG
1105 /* Process should have already died before we are called. */
1106 if (WaitForSingleObject (cp->procinfo.hProcess, 0) != WAIT_OBJECT_0)
1107 DebPrint (("reap_subprocess: child fpr fd %d has not died yet!", cp->fd));
1108 #endif
1109 CloseHandle (cp->procinfo.hProcess);
1110 cp->procinfo.hProcess = NULL;
1111 CloseHandle (cp->procinfo.hThread);
1112 cp->procinfo.hThread = NULL;
1115 /* For asynchronous children, the child_proc resources will be freed
1116 when the last pipe read descriptor is closed; for synchronous
1117 children, we must explicitly free the resources now because
1118 register_child has not been called. */
1119 if (cp->fd == -1)
1120 delete_child (cp);
1123 /* Wait for any of our existing child processes to die
1124 When it does, close its handle
1125 Return the pid and fill in the status if non-NULL. */
1128 sys_wait (int *status)
1130 DWORD active, retval;
1131 int nh;
1132 int pid;
1133 child_process *cp, *cps[MAX_CHILDREN];
1134 HANDLE wait_hnd[MAX_CHILDREN];
1136 nh = 0;
1137 if (dead_child != NULL)
1139 /* We want to wait for a specific child */
1140 wait_hnd[nh] = dead_child->procinfo.hProcess;
1141 cps[nh] = dead_child;
1142 if (!wait_hnd[nh]) emacs_abort ();
1143 nh++;
1144 active = 0;
1145 goto get_result;
1147 else
1149 for (cp = child_procs + (child_proc_count-1); cp >= child_procs; cp--)
1150 /* some child_procs might be sockets; ignore them */
1151 if (CHILD_ACTIVE (cp) && cp->procinfo.hProcess
1152 && (cp->fd < 0 || (fd_info[cp->fd].flags & FILE_AT_EOF) != 0))
1154 wait_hnd[nh] = cp->procinfo.hProcess;
1155 cps[nh] = cp;
1156 nh++;
1160 if (nh == 0)
1162 /* Nothing to wait on, so fail */
1163 errno = ECHILD;
1164 return -1;
1169 /* Check for quit about once a second. */
1170 QUIT;
1171 active = WaitForMultipleObjects (nh, wait_hnd, FALSE, 1000);
1172 } while (active == WAIT_TIMEOUT);
1174 if (active == WAIT_FAILED)
1176 errno = EBADF;
1177 return -1;
1179 else if (active >= WAIT_OBJECT_0
1180 && active < WAIT_OBJECT_0+MAXIMUM_WAIT_OBJECTS)
1182 active -= WAIT_OBJECT_0;
1184 else if (active >= WAIT_ABANDONED_0
1185 && active < WAIT_ABANDONED_0+MAXIMUM_WAIT_OBJECTS)
1187 active -= WAIT_ABANDONED_0;
1189 else
1190 emacs_abort ();
1192 get_result:
1193 if (!GetExitCodeProcess (wait_hnd[active], &retval))
1195 DebPrint (("Wait.GetExitCodeProcess failed with %lu\n",
1196 GetLastError ()));
1197 retval = 1;
1199 if (retval == STILL_ACTIVE)
1201 /* Should never happen */
1202 DebPrint (("Wait.WaitForMultipleObjects returned an active process\n"));
1203 errno = EINVAL;
1204 return -1;
1207 /* Massage the exit code from the process to match the format expected
1208 by the WIFSTOPPED et al macros in syswait.h. Only WIFSIGNALED and
1209 WIFEXITED are supported; WIFSTOPPED doesn't make sense under NT. */
1211 if (retval == STATUS_CONTROL_C_EXIT)
1212 retval = SIGINT;
1213 else
1214 retval <<= 8;
1216 cp = cps[active];
1217 pid = cp->pid;
1218 #ifdef FULL_DEBUG
1219 DebPrint (("Wait signaled with process pid %d\n", cp->pid));
1220 #endif
1222 if (status)
1224 *status = retval;
1226 else if (synch_process_alive)
1228 synch_process_alive = 0;
1230 /* Report the status of the synchronous process. */
1231 if (WIFEXITED (retval))
1232 synch_process_retcode = WEXITSTATUS (retval);
1233 else if (WIFSIGNALED (retval))
1235 int code = WTERMSIG (retval);
1236 const char *signame;
1238 synchronize_system_messages_locale ();
1239 signame = strsignal (code);
1241 if (signame == 0)
1242 signame = "unknown";
1244 synch_process_death = signame;
1247 reap_subprocess (cp);
1250 reap_subprocess (cp);
1252 return pid;
1255 /* Old versions of w32api headers don't have separate 32-bit and
1256 64-bit defines, but the one they have matches the 32-bit variety. */
1257 #ifndef IMAGE_NT_OPTIONAL_HDR32_MAGIC
1258 # define IMAGE_NT_OPTIONAL_HDR32_MAGIC IMAGE_NT_OPTIONAL_HDR_MAGIC
1259 # define IMAGE_OPTIONAL_HEADER32 IMAGE_OPTIONAL_HEADER
1260 #endif
1262 static void
1263 w32_executable_type (char * filename,
1264 int * is_dos_app,
1265 int * is_cygnus_app,
1266 int * is_gui_app)
1268 file_data executable;
1269 char * p;
1271 /* Default values in case we can't tell for sure. */
1272 *is_dos_app = FALSE;
1273 *is_cygnus_app = FALSE;
1274 *is_gui_app = FALSE;
1276 if (!open_input_file (&executable, filename))
1277 return;
1279 p = strrchr (filename, '.');
1281 /* We can only identify DOS .com programs from the extension. */
1282 if (p && xstrcasecmp (p, ".com") == 0)
1283 *is_dos_app = TRUE;
1284 else if (p && (xstrcasecmp (p, ".bat") == 0
1285 || xstrcasecmp (p, ".cmd") == 0))
1287 /* A DOS shell script - it appears that CreateProcess is happy to
1288 accept this (somewhat surprisingly); presumably it looks at
1289 COMSPEC to determine what executable to actually invoke.
1290 Therefore, we have to do the same here as well. */
1291 /* Actually, I think it uses the program association for that
1292 extension, which is defined in the registry. */
1293 p = egetenv ("COMSPEC");
1294 if (p)
1295 w32_executable_type (p, is_dos_app, is_cygnus_app, is_gui_app);
1297 else
1299 /* Look for DOS .exe signature - if found, we must also check that
1300 it isn't really a 16- or 32-bit Windows exe, since both formats
1301 start with a DOS program stub. Note that 16-bit Windows
1302 executables use the OS/2 1.x format. */
1304 IMAGE_DOS_HEADER * dos_header;
1305 IMAGE_NT_HEADERS * nt_header;
1307 dos_header = (PIMAGE_DOS_HEADER) executable.file_base;
1308 if (dos_header->e_magic != IMAGE_DOS_SIGNATURE)
1309 goto unwind;
1311 nt_header = (PIMAGE_NT_HEADERS) ((unsigned char *) dos_header + dos_header->e_lfanew);
1313 if ((char *) nt_header > (char *) dos_header + executable.size)
1315 /* Some dos headers (pkunzip) have bogus e_lfanew fields. */
1316 *is_dos_app = TRUE;
1318 else if (nt_header->Signature != IMAGE_NT_SIGNATURE
1319 && LOWORD (nt_header->Signature) != IMAGE_OS2_SIGNATURE)
1321 *is_dos_app = TRUE;
1323 else if (nt_header->Signature == IMAGE_NT_SIGNATURE)
1325 IMAGE_DATA_DIRECTORY *data_dir = NULL;
1326 if (nt_header->OptionalHeader.Magic == IMAGE_NT_OPTIONAL_HDR32_MAGIC)
1328 /* Ensure we are using the 32 bit structure. */
1329 IMAGE_OPTIONAL_HEADER32 *opt
1330 = (IMAGE_OPTIONAL_HEADER32*) &(nt_header->OptionalHeader);
1331 data_dir = opt->DataDirectory;
1332 *is_gui_app = (opt->Subsystem == IMAGE_SUBSYSTEM_WINDOWS_GUI);
1334 /* MingW 3.12 has the required 64 bit structs, but in case older
1335 versions don't, only check 64 bit exes if we know how. */
1336 #ifdef IMAGE_NT_OPTIONAL_HDR64_MAGIC
1337 else if (nt_header->OptionalHeader.Magic
1338 == IMAGE_NT_OPTIONAL_HDR64_MAGIC)
1340 IMAGE_OPTIONAL_HEADER64 *opt
1341 = (IMAGE_OPTIONAL_HEADER64*) &(nt_header->OptionalHeader);
1342 data_dir = opt->DataDirectory;
1343 *is_gui_app = (opt->Subsystem == IMAGE_SUBSYSTEM_WINDOWS_GUI);
1345 #endif
1346 if (data_dir)
1348 /* Look for cygwin.dll in DLL import list. */
1349 IMAGE_DATA_DIRECTORY import_dir =
1350 data_dir[IMAGE_DIRECTORY_ENTRY_IMPORT];
1351 IMAGE_IMPORT_DESCRIPTOR * imports;
1352 IMAGE_SECTION_HEADER * section;
1354 section = rva_to_section (import_dir.VirtualAddress, nt_header);
1355 imports = RVA_TO_PTR (import_dir.VirtualAddress, section,
1356 executable);
1358 for ( ; imports->Name; imports++)
1360 char * dllname = RVA_TO_PTR (imports->Name, section,
1361 executable);
1363 /* The exact name of the cygwin dll has changed with
1364 various releases, but hopefully this will be reasonably
1365 future proof. */
1366 if (strncmp (dllname, "cygwin", 6) == 0)
1368 *is_cygnus_app = TRUE;
1369 break;
1376 unwind:
1377 close_file_data (&executable);
1380 static int
1381 compare_env (const void *strp1, const void *strp2)
1383 const char *str1 = *(const char **)strp1, *str2 = *(const char **)strp2;
1385 while (*str1 && *str2 && *str1 != '=' && *str2 != '=')
1387 /* Sort order in command.com/cmd.exe is based on uppercasing
1388 names, so do the same here. */
1389 if (toupper (*str1) > toupper (*str2))
1390 return 1;
1391 else if (toupper (*str1) < toupper (*str2))
1392 return -1;
1393 str1++, str2++;
1396 if (*str1 == '=' && *str2 == '=')
1397 return 0;
1398 else if (*str1 == '=')
1399 return -1;
1400 else
1401 return 1;
1404 static void
1405 merge_and_sort_env (char **envp1, char **envp2, char **new_envp)
1407 char **optr, **nptr;
1408 int num;
1410 nptr = new_envp;
1411 optr = envp1;
1412 while (*optr)
1413 *nptr++ = *optr++;
1414 num = optr - envp1;
1416 optr = envp2;
1417 while (*optr)
1418 *nptr++ = *optr++;
1419 num += optr - envp2;
1421 qsort (new_envp, num, sizeof (char *), compare_env);
1423 *nptr = NULL;
1426 /* When a new child process is created we need to register it in our list,
1427 so intercept spawn requests. */
1429 sys_spawnve (int mode, char *cmdname, char **argv, char **envp)
1431 Lisp_Object program, full;
1432 char *cmdline, *env, *parg, **targ;
1433 int arglen, numenv;
1434 int pid;
1435 child_process *cp;
1436 int is_dos_app, is_cygnus_app, is_gui_app;
1437 int do_quoting = 0;
1438 char escape_char;
1439 /* We pass our process ID to our children by setting up an environment
1440 variable in their environment. */
1441 char ppid_env_var_buffer[64];
1442 char *extra_env[] = {ppid_env_var_buffer, NULL};
1443 /* These are the characters that cause an argument to need quoting.
1444 Arguments with whitespace characters need quoting to prevent the
1445 argument being split into two or more. Arguments with wildcards
1446 are also quoted, for consistency with posix platforms, where wildcards
1447 are not expanded if we run the program directly without a shell.
1448 Some extra whitespace characters need quoting in Cygwin programs,
1449 so this list is conditionally modified below. */
1450 char *sepchars = " \t*?";
1452 /* We don't care about the other modes */
1453 if (mode != _P_NOWAIT)
1455 errno = EINVAL;
1456 return -1;
1459 /* Handle executable names without an executable suffix. */
1460 program = build_string (cmdname);
1461 if (NILP (Ffile_executable_p (program)))
1463 struct gcpro gcpro1;
1465 full = Qnil;
1466 GCPRO1 (program);
1467 openp (Vexec_path, program, Vexec_suffixes, &full, make_number (X_OK));
1468 UNGCPRO;
1469 if (NILP (full))
1471 errno = EINVAL;
1472 return -1;
1474 program = full;
1477 /* make sure argv[0] and cmdname are both in DOS format */
1478 cmdname = SDATA (program);
1479 unixtodos_filename (cmdname);
1480 argv[0] = cmdname;
1482 /* Determine whether program is a 16-bit DOS executable, or a 32-bit Windows
1483 executable that is implicitly linked to the Cygnus dll (implying it
1484 was compiled with the Cygnus GNU toolchain and hence relies on
1485 cygwin.dll to parse the command line - we use this to decide how to
1486 escape quote chars in command line args that must be quoted).
1488 Also determine whether it is a GUI app, so that we don't hide its
1489 initial window unless specifically requested. */
1490 w32_executable_type (cmdname, &is_dos_app, &is_cygnus_app, &is_gui_app);
1492 /* On Windows 95, if cmdname is a DOS app, we invoke a helper
1493 application to start it by specifying the helper app as cmdname,
1494 while leaving the real app name as argv[0]. */
1495 if (is_dos_app)
1497 cmdname = alloca (MAXPATHLEN);
1498 if (egetenv ("CMDPROXY"))
1499 strcpy (cmdname, egetenv ("CMDPROXY"));
1500 else
1502 strcpy (cmdname, SDATA (Vinvocation_directory));
1503 strcat (cmdname, "cmdproxy.exe");
1505 unixtodos_filename (cmdname);
1508 /* we have to do some conjuring here to put argv and envp into the
1509 form CreateProcess wants... argv needs to be a space separated/null
1510 terminated list of parameters, and envp is a null
1511 separated/double-null terminated list of parameters.
1513 Additionally, zero-length args and args containing whitespace or
1514 quote chars need to be wrapped in double quotes - for this to work,
1515 embedded quotes need to be escaped as well. The aim is to ensure
1516 the child process reconstructs the argv array we start with
1517 exactly, so we treat quotes at the beginning and end of arguments
1518 as embedded quotes.
1520 The w32 GNU-based library from Cygnus doubles quotes to escape
1521 them, while MSVC uses backslash for escaping. (Actually the MSVC
1522 startup code does attempt to recognize doubled quotes and accept
1523 them, but gets it wrong and ends up requiring three quotes to get a
1524 single embedded quote!) So by default we decide whether to use
1525 quote or backslash as the escape character based on whether the
1526 binary is apparently a Cygnus compiled app.
1528 Note that using backslash to escape embedded quotes requires
1529 additional special handling if an embedded quote is already
1530 preceded by backslash, or if an arg requiring quoting ends with
1531 backslash. In such cases, the run of escape characters needs to be
1532 doubled. For consistency, we apply this special handling as long
1533 as the escape character is not quote.
1535 Since we have no idea how large argv and envp are likely to be we
1536 figure out list lengths on the fly and allocate them. */
1538 if (!NILP (Vw32_quote_process_args))
1540 do_quoting = 1;
1541 /* Override escape char by binding w32-quote-process-args to
1542 desired character, or use t for auto-selection. */
1543 if (INTEGERP (Vw32_quote_process_args))
1544 escape_char = XINT (Vw32_quote_process_args);
1545 else
1546 escape_char = is_cygnus_app ? '"' : '\\';
1549 /* Cygwin apps needs quoting a bit more often. */
1550 if (escape_char == '"')
1551 sepchars = "\r\n\t\f '";
1553 /* do argv... */
1554 arglen = 0;
1555 targ = argv;
1556 while (*targ)
1558 char * p = *targ;
1559 int need_quotes = 0;
1560 int escape_char_run = 0;
1562 if (*p == 0)
1563 need_quotes = 1;
1564 for ( ; *p; p++)
1566 if (escape_char == '"' && *p == '\\')
1567 /* If it's a Cygwin app, \ needs to be escaped. */
1568 arglen++;
1569 else if (*p == '"')
1571 /* allow for embedded quotes to be escaped */
1572 arglen++;
1573 need_quotes = 1;
1574 /* handle the case where the embedded quote is already escaped */
1575 if (escape_char_run > 0)
1577 /* To preserve the arg exactly, we need to double the
1578 preceding escape characters (plus adding one to
1579 escape the quote character itself). */
1580 arglen += escape_char_run;
1583 else if (strchr (sepchars, *p) != NULL)
1585 need_quotes = 1;
1588 if (*p == escape_char && escape_char != '"')
1589 escape_char_run++;
1590 else
1591 escape_char_run = 0;
1593 if (need_quotes)
1595 arglen += 2;
1596 /* handle the case where the arg ends with an escape char - we
1597 must not let the enclosing quote be escaped. */
1598 if (escape_char_run > 0)
1599 arglen += escape_char_run;
1601 arglen += strlen (*targ++) + 1;
1603 cmdline = alloca (arglen);
1604 targ = argv;
1605 parg = cmdline;
1606 while (*targ)
1608 char * p = *targ;
1609 int need_quotes = 0;
1611 if (*p == 0)
1612 need_quotes = 1;
1614 if (do_quoting)
1616 for ( ; *p; p++)
1617 if ((strchr (sepchars, *p) != NULL) || *p == '"')
1618 need_quotes = 1;
1620 if (need_quotes)
1622 int escape_char_run = 0;
1623 char * first;
1624 char * last;
1626 p = *targ;
1627 first = p;
1628 last = p + strlen (p) - 1;
1629 *parg++ = '"';
1630 #if 0
1631 /* This version does not escape quotes if they occur at the
1632 beginning or end of the arg - this could lead to incorrect
1633 behavior when the arg itself represents a command line
1634 containing quoted args. I believe this was originally done
1635 as a hack to make some things work, before
1636 `w32-quote-process-args' was added. */
1637 while (*p)
1639 if (*p == '"' && p > first && p < last)
1640 *parg++ = escape_char; /* escape embedded quotes */
1641 *parg++ = *p++;
1643 #else
1644 for ( ; *p; p++)
1646 if (*p == '"')
1648 /* double preceding escape chars if any */
1649 while (escape_char_run > 0)
1651 *parg++ = escape_char;
1652 escape_char_run--;
1654 /* escape all quote chars, even at beginning or end */
1655 *parg++ = escape_char;
1657 else if (escape_char == '"' && *p == '\\')
1658 *parg++ = '\\';
1659 *parg++ = *p;
1661 if (*p == escape_char && escape_char != '"')
1662 escape_char_run++;
1663 else
1664 escape_char_run = 0;
1666 /* double escape chars before enclosing quote */
1667 while (escape_char_run > 0)
1669 *parg++ = escape_char;
1670 escape_char_run--;
1672 #endif
1673 *parg++ = '"';
1675 else
1677 strcpy (parg, *targ);
1678 parg += strlen (*targ);
1680 *parg++ = ' ';
1681 targ++;
1683 *--parg = '\0';
1685 /* and envp... */
1686 arglen = 1;
1687 targ = envp;
1688 numenv = 1; /* for end null */
1689 while (*targ)
1691 arglen += strlen (*targ++) + 1;
1692 numenv++;
1694 /* extra env vars... */
1695 sprintf (ppid_env_var_buffer, "EM_PARENT_PROCESS_ID=%lu",
1696 GetCurrentProcessId ());
1697 arglen += strlen (ppid_env_var_buffer) + 1;
1698 numenv++;
1700 /* merge env passed in and extra env into one, and sort it. */
1701 targ = (char **) alloca (numenv * sizeof (char *));
1702 merge_and_sort_env (envp, extra_env, targ);
1704 /* concatenate env entries. */
1705 env = alloca (arglen);
1706 parg = env;
1707 while (*targ)
1709 strcpy (parg, *targ);
1710 parg += strlen (*targ++);
1711 *parg++ = '\0';
1713 *parg++ = '\0';
1714 *parg = '\0';
1716 cp = new_child ();
1717 if (cp == NULL)
1719 errno = EAGAIN;
1720 return -1;
1723 /* Now create the process. */
1724 if (!create_child (cmdname, cmdline, env, is_gui_app, &pid, cp))
1726 delete_child (cp);
1727 errno = ENOEXEC;
1728 return -1;
1731 return pid;
1734 /* Emulate the select call
1735 Wait for available input on any of the given rfds, or timeout if
1736 a timeout is given and no input is detected
1737 wfds and efds are not supported and must be NULL.
1739 For simplicity, we detect the death of child processes here and
1740 synchronously call the SIGCHLD handler. Since it is possible for
1741 children to be created without a corresponding pipe handle from which
1742 to read output, we wait separately on the process handles as well as
1743 the char_avail events for each process pipe. We only call
1744 wait/reap_process when the process actually terminates.
1746 To reduce the number of places in which Emacs can be hung such that
1747 C-g is not able to interrupt it, we always wait on interrupt_handle
1748 (which is signaled by the input thread when C-g is detected). If we
1749 detect that we were woken up by C-g, we return -1 with errno set to
1750 EINTR as on Unix. */
1752 /* From w32console.c */
1753 extern HANDLE keyboard_handle;
1755 /* From w32xfns.c */
1756 extern HANDLE interrupt_handle;
1758 /* From process.c */
1759 extern int proc_buffered_char[];
1762 sys_select (int nfds, SELECT_TYPE *rfds, SELECT_TYPE *wfds, SELECT_TYPE *efds,
1763 EMACS_TIME *timeout, void *ignored)
1765 SELECT_TYPE orfds;
1766 DWORD timeout_ms, start_time;
1767 int i, nh, nc, nr;
1768 DWORD active;
1769 child_process *cp, *cps[MAX_CHILDREN];
1770 HANDLE wait_hnd[MAXDESC + MAX_CHILDREN];
1771 int fdindex[MAXDESC]; /* mapping from wait handles back to descriptors */
1773 timeout_ms =
1774 timeout ? (timeout->tv_sec * 1000 + timeout->tv_nsec / 1000000) : INFINITE;
1776 /* If the descriptor sets are NULL but timeout isn't, then just Sleep. */
1777 if (rfds == NULL && wfds == NULL && efds == NULL && timeout != NULL)
1779 Sleep (timeout_ms);
1780 return 0;
1783 /* Otherwise, we only handle rfds, so fail otherwise. */
1784 if (rfds == NULL || wfds != NULL || efds != NULL)
1786 errno = EINVAL;
1787 return -1;
1790 orfds = *rfds;
1791 FD_ZERO (rfds);
1792 nr = 0;
1794 /* Always wait on interrupt_handle, to detect C-g (quit). */
1795 wait_hnd[0] = interrupt_handle;
1796 fdindex[0] = -1;
1798 /* Build a list of pipe handles to wait on. */
1799 nh = 1;
1800 for (i = 0; i < nfds; i++)
1801 if (FD_ISSET (i, &orfds))
1803 if (i == 0)
1805 if (keyboard_handle)
1807 /* Handle stdin specially */
1808 wait_hnd[nh] = keyboard_handle;
1809 fdindex[nh] = i;
1810 nh++;
1813 /* Check for any emacs-generated input in the queue since
1814 it won't be detected in the wait */
1815 if (detect_input_pending ())
1817 FD_SET (i, rfds);
1818 return 1;
1821 else
1823 /* Child process and socket input */
1824 cp = fd_info[i].cp;
1825 if (cp)
1827 int current_status = cp->status;
1829 if (current_status == STATUS_READ_ACKNOWLEDGED)
1831 /* Tell reader thread which file handle to use. */
1832 cp->fd = i;
1833 /* Wake up the reader thread for this process */
1834 cp->status = STATUS_READ_READY;
1835 if (!SetEvent (cp->char_consumed))
1836 DebPrint (("nt_select.SetEvent failed with "
1837 "%lu for fd %ld\n", GetLastError (), i));
1840 #ifdef CHECK_INTERLOCK
1841 /* slightly crude cross-checking of interlock between threads */
1843 current_status = cp->status;
1844 if (WaitForSingleObject (cp->char_avail, 0) == WAIT_OBJECT_0)
1846 /* char_avail has been signaled, so status (which may
1847 have changed) should indicate read has completed
1848 but has not been acknowledged. */
1849 current_status = cp->status;
1850 if (current_status != STATUS_READ_SUCCEEDED
1851 && current_status != STATUS_READ_FAILED)
1852 DebPrint (("char_avail set, but read not completed: status %d\n",
1853 current_status));
1855 else
1857 /* char_avail has not been signaled, so status should
1858 indicate that read is in progress; small possibility
1859 that read has completed but event wasn't yet signaled
1860 when we tested it (because a context switch occurred
1861 or if running on separate CPUs). */
1862 if (current_status != STATUS_READ_READY
1863 && current_status != STATUS_READ_IN_PROGRESS
1864 && current_status != STATUS_READ_SUCCEEDED
1865 && current_status != STATUS_READ_FAILED)
1866 DebPrint (("char_avail reset, but read status is bad: %d\n",
1867 current_status));
1869 #endif
1870 wait_hnd[nh] = cp->char_avail;
1871 fdindex[nh] = i;
1872 if (!wait_hnd[nh]) emacs_abort ();
1873 nh++;
1874 #ifdef FULL_DEBUG
1875 DebPrint (("select waiting on child %d fd %d\n",
1876 cp-child_procs, i));
1877 #endif
1879 else
1881 /* Unable to find something to wait on for this fd, skip */
1883 /* Note that this is not a fatal error, and can in fact
1884 happen in unusual circumstances. Specifically, if
1885 sys_spawnve fails, eg. because the program doesn't
1886 exist, and debug-on-error is t so Fsignal invokes a
1887 nested input loop, then the process output pipe is
1888 still included in input_wait_mask with no child_proc
1889 associated with it. (It is removed when the debugger
1890 exits the nested input loop and the error is thrown.) */
1892 DebPrint (("sys_select: fd %ld is invalid! ignoring\n", i));
1897 count_children:
1898 /* Add handles of child processes. */
1899 nc = 0;
1900 for (cp = child_procs + (child_proc_count-1); cp >= child_procs; cp--)
1901 /* Some child_procs might be sockets; ignore them. Also some
1902 children may have died already, but we haven't finished reading
1903 the process output; ignore them too. */
1904 if (CHILD_ACTIVE (cp) && cp->procinfo.hProcess
1905 && (cp->fd < 0
1906 || (fd_info[cp->fd].flags & FILE_SEND_SIGCHLD) == 0
1907 || (fd_info[cp->fd].flags & FILE_AT_EOF) != 0)
1910 wait_hnd[nh + nc] = cp->procinfo.hProcess;
1911 cps[nc] = cp;
1912 nc++;
1915 /* Nothing to look for, so we didn't find anything */
1916 if (nh + nc == 0)
1918 if (timeout)
1919 Sleep (timeout_ms);
1920 return 0;
1923 start_time = GetTickCount ();
1925 /* Wait for input or child death to be signaled. If user input is
1926 allowed, then also accept window messages. */
1927 if (FD_ISSET (0, &orfds))
1928 active = MsgWaitForMultipleObjects (nh + nc, wait_hnd, FALSE, timeout_ms,
1929 QS_ALLINPUT);
1930 else
1931 active = WaitForMultipleObjects (nh + nc, wait_hnd, FALSE, timeout_ms);
1933 if (active == WAIT_FAILED)
1935 DebPrint (("select.WaitForMultipleObjects (%d, %lu) failed with %lu\n",
1936 nh + nc, timeout_ms, GetLastError ()));
1937 /* don't return EBADF - this causes wait_reading_process_output to
1938 abort; WAIT_FAILED is returned when single-stepping under
1939 Windows 95 after switching thread focus in debugger, and
1940 possibly at other times. */
1941 errno = EINTR;
1942 return -1;
1944 else if (active == WAIT_TIMEOUT)
1946 return 0;
1948 else if (active >= WAIT_OBJECT_0
1949 && active < WAIT_OBJECT_0+MAXIMUM_WAIT_OBJECTS)
1951 active -= WAIT_OBJECT_0;
1953 else if (active >= WAIT_ABANDONED_0
1954 && active < WAIT_ABANDONED_0+MAXIMUM_WAIT_OBJECTS)
1956 active -= WAIT_ABANDONED_0;
1958 else
1959 emacs_abort ();
1961 /* Loop over all handles after active (now officially documented as
1962 being the first signaled handle in the array). We do this to
1963 ensure fairness, so that all channels with data available will be
1964 processed - otherwise higher numbered channels could be starved. */
1967 if (active == nh + nc)
1969 /* There are messages in the lisp thread's queue; we must
1970 drain the queue now to ensure they are processed promptly,
1971 because if we don't do so, we will not be woken again until
1972 further messages arrive.
1974 NB. If ever we allow window message procedures to callback
1975 into lisp, we will need to ensure messages are dispatched
1976 at a safe time for lisp code to be run (*), and we may also
1977 want to provide some hooks in the dispatch loop to cater
1978 for modeless dialogs created by lisp (ie. to register
1979 window handles to pass to IsDialogMessage).
1981 (*) Note that MsgWaitForMultipleObjects above is an
1982 internal dispatch point for messages that are sent to
1983 windows created by this thread. */
1984 drain_message_queue ();
1986 else if (active >= nh)
1988 cp = cps[active - nh];
1990 /* We cannot always signal SIGCHLD immediately; if we have not
1991 finished reading the process output, we must delay sending
1992 SIGCHLD until we do. */
1994 if (cp->fd >= 0 && (fd_info[cp->fd].flags & FILE_AT_EOF) == 0)
1995 fd_info[cp->fd].flags |= FILE_SEND_SIGCHLD;
1996 /* SIG_DFL for SIGCHLD is ignore */
1997 else if (sig_handlers[SIGCHLD] != SIG_DFL &&
1998 sig_handlers[SIGCHLD] != SIG_IGN)
2000 #ifdef FULL_DEBUG
2001 DebPrint (("select calling SIGCHLD handler for pid %d\n",
2002 cp->pid));
2003 #endif
2004 dead_child = cp;
2005 sig_handlers[SIGCHLD] (SIGCHLD);
2006 dead_child = NULL;
2009 else if (fdindex[active] == -1)
2011 /* Quit (C-g) was detected. */
2012 errno = EINTR;
2013 return -1;
2015 else if (fdindex[active] == 0)
2017 /* Keyboard input available */
2018 FD_SET (0, rfds);
2019 nr++;
2021 else
2023 /* must be a socket or pipe - read ahead should have
2024 completed, either succeeding or failing. */
2025 FD_SET (fdindex[active], rfds);
2026 nr++;
2029 /* Even though wait_reading_process_output only reads from at most
2030 one channel, we must process all channels here so that we reap
2031 all children that have died. */
2032 while (++active < nh + nc)
2033 if (WaitForSingleObject (wait_hnd[active], 0) == WAIT_OBJECT_0)
2034 break;
2035 } while (active < nh + nc);
2037 /* If no input has arrived and timeout hasn't expired, wait again. */
2038 if (nr == 0)
2040 DWORD elapsed = GetTickCount () - start_time;
2042 if (timeout_ms > elapsed) /* INFINITE is MAX_UINT */
2044 if (timeout_ms != INFINITE)
2045 timeout_ms -= elapsed;
2046 goto count_children;
2050 return nr;
2053 /* Substitute for certain kill () operations */
2055 static BOOL CALLBACK
2056 find_child_console (HWND hwnd, LPARAM arg)
2058 child_process * cp = (child_process *) arg;
2059 DWORD thread_id;
2060 DWORD process_id;
2062 thread_id = GetWindowThreadProcessId (hwnd, &process_id);
2063 if (process_id == cp->procinfo.dwProcessId)
2065 char window_class[32];
2067 GetClassName (hwnd, window_class, sizeof (window_class));
2068 if (strcmp (window_class,
2069 (os_subtype == OS_9X)
2070 ? "tty"
2071 : "ConsoleWindowClass") == 0)
2073 cp->hwnd = hwnd;
2074 return FALSE;
2077 /* keep looking */
2078 return TRUE;
2081 /* Emulate 'kill', but only for other processes. */
2083 sys_kill (int pid, int sig)
2085 child_process *cp;
2086 HANDLE proc_hand;
2087 int need_to_free = 0;
2088 int rc = 0;
2090 /* Only handle signals that will result in the process dying */
2091 if (sig != SIGINT && sig != SIGKILL && sig != SIGQUIT && sig != SIGHUP)
2093 errno = EINVAL;
2094 return -1;
2097 cp = find_child_pid (pid);
2098 if (cp == NULL)
2100 /* We were passed a PID of something other than our subprocess.
2101 If that is our own PID, we will send to ourself a message to
2102 close the selected frame, which does not necessarily
2103 terminates Emacs. But then we are not supposed to call
2104 sys_kill with our own PID. */
2105 proc_hand = OpenProcess (PROCESS_TERMINATE, 0, pid);
2106 if (proc_hand == NULL)
2108 errno = EPERM;
2109 return -1;
2111 need_to_free = 1;
2113 else
2115 proc_hand = cp->procinfo.hProcess;
2116 pid = cp->procinfo.dwProcessId;
2118 /* Try to locate console window for process. */
2119 EnumWindows (find_child_console, (LPARAM) cp);
2122 if (sig == SIGINT || sig == SIGQUIT)
2124 if (NILP (Vw32_start_process_share_console) && cp && cp->hwnd)
2126 BYTE control_scan_code = (BYTE) MapVirtualKey (VK_CONTROL, 0);
2127 /* Fake Ctrl-C for SIGINT, and Ctrl-Break for SIGQUIT. */
2128 BYTE vk_break_code = (sig == SIGINT) ? 'C' : VK_CANCEL;
2129 BYTE break_scan_code = (BYTE) MapVirtualKey (vk_break_code, 0);
2130 HWND foreground_window;
2132 if (break_scan_code == 0)
2134 /* Fake Ctrl-C for SIGQUIT if we can't manage Ctrl-Break. */
2135 vk_break_code = 'C';
2136 break_scan_code = (BYTE) MapVirtualKey (vk_break_code, 0);
2139 foreground_window = GetForegroundWindow ();
2140 if (foreground_window)
2142 /* NT 5.0, and apparently also Windows 98, will not allow
2143 a Window to be set to foreground directly without the
2144 user's involvement. The workaround is to attach
2145 ourselves to the thread that owns the foreground
2146 window, since that is the only thread that can set the
2147 foreground window. */
2148 DWORD foreground_thread, child_thread;
2149 foreground_thread =
2150 GetWindowThreadProcessId (foreground_window, NULL);
2151 if (foreground_thread == GetCurrentThreadId ()
2152 || !AttachThreadInput (GetCurrentThreadId (),
2153 foreground_thread, TRUE))
2154 foreground_thread = 0;
2156 child_thread = GetWindowThreadProcessId (cp->hwnd, NULL);
2157 if (child_thread == GetCurrentThreadId ()
2158 || !AttachThreadInput (GetCurrentThreadId (),
2159 child_thread, TRUE))
2160 child_thread = 0;
2162 /* Set the foreground window to the child. */
2163 if (SetForegroundWindow (cp->hwnd))
2165 /* Generate keystrokes as if user had typed Ctrl-Break or
2166 Ctrl-C. */
2167 keybd_event (VK_CONTROL, control_scan_code, 0, 0);
2168 keybd_event (vk_break_code, break_scan_code,
2169 (vk_break_code == 'C' ? 0 : KEYEVENTF_EXTENDEDKEY), 0);
2170 keybd_event (vk_break_code, break_scan_code,
2171 (vk_break_code == 'C' ? 0 : KEYEVENTF_EXTENDEDKEY)
2172 | KEYEVENTF_KEYUP, 0);
2173 keybd_event (VK_CONTROL, control_scan_code,
2174 KEYEVENTF_KEYUP, 0);
2176 /* Sleep for a bit to give time for Emacs frame to respond
2177 to focus change events (if Emacs was active app). */
2178 Sleep (100);
2180 SetForegroundWindow (foreground_window);
2182 /* Detach from the foreground and child threads now that
2183 the foreground switching is over. */
2184 if (foreground_thread)
2185 AttachThreadInput (GetCurrentThreadId (),
2186 foreground_thread, FALSE);
2187 if (child_thread)
2188 AttachThreadInput (GetCurrentThreadId (),
2189 child_thread, FALSE);
2192 /* Ctrl-Break is NT equivalent of SIGINT. */
2193 else if (!GenerateConsoleCtrlEvent (CTRL_BREAK_EVENT, pid))
2195 DebPrint (("sys_kill.GenerateConsoleCtrlEvent return %d "
2196 "for pid %lu\n", GetLastError (), pid));
2197 errno = EINVAL;
2198 rc = -1;
2201 else
2203 if (NILP (Vw32_start_process_share_console) && cp && cp->hwnd)
2205 #if 1
2206 if (os_subtype == OS_9X)
2209 Another possibility is to try terminating the VDM out-right by
2210 calling the Shell VxD (id 0x17) V86 interface, function #4
2211 "SHELL_Destroy_VM", ie.
2213 mov edx,4
2214 mov ebx,vm_handle
2215 call shellapi
2217 First need to determine the current VM handle, and then arrange for
2218 the shellapi call to be made from the system vm (by using
2219 Switch_VM_and_callback).
2221 Could try to invoke DestroyVM through CallVxD.
2224 #if 0
2225 /* On Windows 95, posting WM_QUIT causes the 16-bit subsystem
2226 to hang when cmdproxy is used in conjunction with
2227 command.com for an interactive shell. Posting
2228 WM_CLOSE pops up a dialog that, when Yes is selected,
2229 does the same thing. TerminateProcess is also less
2230 than ideal in that subprocesses tend to stick around
2231 until the machine is shutdown, but at least it
2232 doesn't freeze the 16-bit subsystem. */
2233 PostMessage (cp->hwnd, WM_QUIT, 0xff, 0);
2234 #endif
2235 if (!TerminateProcess (proc_hand, 0xff))
2237 DebPrint (("sys_kill.TerminateProcess returned %d "
2238 "for pid %lu\n", GetLastError (), pid));
2239 errno = EINVAL;
2240 rc = -1;
2243 else
2244 #endif
2245 PostMessage (cp->hwnd, WM_CLOSE, 0, 0);
2247 /* Kill the process. On W32 this doesn't kill child processes
2248 so it doesn't work very well for shells which is why it's not
2249 used in every case. */
2250 else if (!TerminateProcess (proc_hand, 0xff))
2252 DebPrint (("sys_kill.TerminateProcess returned %d "
2253 "for pid %lu\n", GetLastError (), pid));
2254 errno = EINVAL;
2255 rc = -1;
2259 if (need_to_free)
2260 CloseHandle (proc_hand);
2262 return rc;
2265 /* The following two routines are used to manipulate stdin, stdout, and
2266 stderr of our child processes.
2268 Assuming that in, out, and err are *not* inheritable, we make them
2269 stdin, stdout, and stderr of the child as follows:
2271 - Save the parent's current standard handles.
2272 - Set the std handles to inheritable duplicates of the ones being passed in.
2273 (Note that _get_osfhandle() is an io.h procedure that retrieves the
2274 NT file handle for a crt file descriptor.)
2275 - Spawn the child, which inherits in, out, and err as stdin,
2276 stdout, and stderr. (see Spawnve)
2277 - Close the std handles passed to the child.
2278 - Reset the parent's standard handles to the saved handles.
2279 (see reset_standard_handles)
2280 We assume that the caller closes in, out, and err after calling us. */
2282 void
2283 prepare_standard_handles (int in, int out, int err, HANDLE handles[3])
2285 HANDLE parent;
2286 HANDLE newstdin, newstdout, newstderr;
2288 parent = GetCurrentProcess ();
2290 handles[0] = GetStdHandle (STD_INPUT_HANDLE);
2291 handles[1] = GetStdHandle (STD_OUTPUT_HANDLE);
2292 handles[2] = GetStdHandle (STD_ERROR_HANDLE);
2294 /* make inheritable copies of the new handles */
2295 if (!DuplicateHandle (parent,
2296 (HANDLE) _get_osfhandle (in),
2297 parent,
2298 &newstdin,
2300 TRUE,
2301 DUPLICATE_SAME_ACCESS))
2302 report_file_error ("Duplicating input handle for child", Qnil);
2304 if (!DuplicateHandle (parent,
2305 (HANDLE) _get_osfhandle (out),
2306 parent,
2307 &newstdout,
2309 TRUE,
2310 DUPLICATE_SAME_ACCESS))
2311 report_file_error ("Duplicating output handle for child", Qnil);
2313 if (!DuplicateHandle (parent,
2314 (HANDLE) _get_osfhandle (err),
2315 parent,
2316 &newstderr,
2318 TRUE,
2319 DUPLICATE_SAME_ACCESS))
2320 report_file_error ("Duplicating error handle for child", Qnil);
2322 /* and store them as our std handles */
2323 if (!SetStdHandle (STD_INPUT_HANDLE, newstdin))
2324 report_file_error ("Changing stdin handle", Qnil);
2326 if (!SetStdHandle (STD_OUTPUT_HANDLE, newstdout))
2327 report_file_error ("Changing stdout handle", Qnil);
2329 if (!SetStdHandle (STD_ERROR_HANDLE, newstderr))
2330 report_file_error ("Changing stderr handle", Qnil);
2333 void
2334 reset_standard_handles (int in, int out, int err, HANDLE handles[3])
2336 /* close the duplicated handles passed to the child */
2337 CloseHandle (GetStdHandle (STD_INPUT_HANDLE));
2338 CloseHandle (GetStdHandle (STD_OUTPUT_HANDLE));
2339 CloseHandle (GetStdHandle (STD_ERROR_HANDLE));
2341 /* now restore parent's saved std handles */
2342 SetStdHandle (STD_INPUT_HANDLE, handles[0]);
2343 SetStdHandle (STD_OUTPUT_HANDLE, handles[1]);
2344 SetStdHandle (STD_ERROR_HANDLE, handles[2]);
2347 void
2348 set_process_dir (char * dir)
2350 process_dir = dir;
2353 /* To avoid problems with winsock implementations that work over dial-up
2354 connections causing or requiring a connection to exist while Emacs is
2355 running, Emacs no longer automatically loads winsock on startup if it
2356 is present. Instead, it will be loaded when open-network-stream is
2357 first called.
2359 To allow full control over when winsock is loaded, we provide these
2360 two functions to dynamically load and unload winsock. This allows
2361 dial-up users to only be connected when they actually need to use
2362 socket services. */
2364 /* From w32.c */
2365 extern HANDLE winsock_lib;
2366 extern BOOL term_winsock (void);
2367 extern BOOL init_winsock (int load_now);
2369 DEFUN ("w32-has-winsock", Fw32_has_winsock, Sw32_has_winsock, 0, 1, 0,
2370 doc: /* Test for presence of the Windows socket library `winsock'.
2371 Returns non-nil if winsock support is present, nil otherwise.
2373 If the optional argument LOAD-NOW is non-nil, the winsock library is
2374 also loaded immediately if not already loaded. If winsock is loaded,
2375 the winsock local hostname is returned (since this may be different from
2376 the value of `system-name' and should supplant it), otherwise t is
2377 returned to indicate winsock support is present. */)
2378 (Lisp_Object load_now)
2380 int have_winsock;
2382 have_winsock = init_winsock (!NILP (load_now));
2383 if (have_winsock)
2385 if (winsock_lib != NULL)
2387 /* Return new value for system-name. The best way to do this
2388 is to call init_system_name, saving and restoring the
2389 original value to avoid side-effects. */
2390 Lisp_Object orig_hostname = Vsystem_name;
2391 Lisp_Object hostname;
2393 init_system_name ();
2394 hostname = Vsystem_name;
2395 Vsystem_name = orig_hostname;
2396 return hostname;
2398 return Qt;
2400 return Qnil;
2403 DEFUN ("w32-unload-winsock", Fw32_unload_winsock, Sw32_unload_winsock,
2404 0, 0, 0,
2405 doc: /* Unload the Windows socket library `winsock' if loaded.
2406 This is provided to allow dial-up socket connections to be disconnected
2407 when no longer needed. Returns nil without unloading winsock if any
2408 socket connections still exist. */)
2409 (void)
2411 return term_winsock () ? Qt : Qnil;
2415 /* Some miscellaneous functions that are Windows specific, but not GUI
2416 specific (ie. are applicable in terminal or batch mode as well). */
2418 DEFUN ("w32-short-file-name", Fw32_short_file_name, Sw32_short_file_name, 1, 1, 0,
2419 doc: /* Return the short file name version (8.3) of the full path of FILENAME.
2420 If FILENAME does not exist, return nil.
2421 All path elements in FILENAME are converted to their short names. */)
2422 (Lisp_Object filename)
2424 char shortname[MAX_PATH];
2426 CHECK_STRING (filename);
2428 /* first expand it. */
2429 filename = Fexpand_file_name (filename, Qnil);
2431 /* luckily, this returns the short version of each element in the path. */
2432 if (GetShortPathName (SDATA (ENCODE_FILE (filename)), shortname, MAX_PATH) == 0)
2433 return Qnil;
2435 dostounix_filename (shortname);
2437 return build_string (shortname);
2441 DEFUN ("w32-long-file-name", Fw32_long_file_name, Sw32_long_file_name,
2442 1, 1, 0,
2443 doc: /* Return the long file name version of the full path of FILENAME.
2444 If FILENAME does not exist, return nil.
2445 All path elements in FILENAME are converted to their long names. */)
2446 (Lisp_Object filename)
2448 char longname[ MAX_PATH ];
2449 int drive_only = 0;
2451 CHECK_STRING (filename);
2453 if (SBYTES (filename) == 2
2454 && *(SDATA (filename) + 1) == ':')
2455 drive_only = 1;
2457 /* first expand it. */
2458 filename = Fexpand_file_name (filename, Qnil);
2460 if (!w32_get_long_filename (SDATA (ENCODE_FILE (filename)), longname, MAX_PATH))
2461 return Qnil;
2463 dostounix_filename (longname);
2465 /* If we were passed only a drive, make sure that a slash is not appended
2466 for consistency with directories. Allow for drive mapping via SUBST
2467 in case expand-file-name is ever changed to expand those. */
2468 if (drive_only && longname[1] == ':' && longname[2] == '/' && !longname[3])
2469 longname[2] = '\0';
2471 return DECODE_FILE (build_string (longname));
2474 DEFUN ("w32-set-process-priority", Fw32_set_process_priority,
2475 Sw32_set_process_priority, 2, 2, 0,
2476 doc: /* Set the priority of PROCESS to PRIORITY.
2477 If PROCESS is nil, the priority of Emacs is changed, otherwise the
2478 priority of the process whose pid is PROCESS is changed.
2479 PRIORITY should be one of the symbols high, normal, or low;
2480 any other symbol will be interpreted as normal.
2482 If successful, the return value is t, otherwise nil. */)
2483 (Lisp_Object process, Lisp_Object priority)
2485 HANDLE proc_handle = GetCurrentProcess ();
2486 DWORD priority_class = NORMAL_PRIORITY_CLASS;
2487 Lisp_Object result = Qnil;
2489 CHECK_SYMBOL (priority);
2491 if (!NILP (process))
2493 DWORD pid;
2494 child_process *cp;
2496 CHECK_NUMBER (process);
2498 /* Allow pid to be an internally generated one, or one obtained
2499 externally. This is necessary because real pids on Windows 95 are
2500 negative. */
2502 pid = XINT (process);
2503 cp = find_child_pid (pid);
2504 if (cp != NULL)
2505 pid = cp->procinfo.dwProcessId;
2507 proc_handle = OpenProcess (PROCESS_SET_INFORMATION, FALSE, pid);
2510 if (EQ (priority, Qhigh))
2511 priority_class = HIGH_PRIORITY_CLASS;
2512 else if (EQ (priority, Qlow))
2513 priority_class = IDLE_PRIORITY_CLASS;
2515 if (proc_handle != NULL)
2517 if (SetPriorityClass (proc_handle, priority_class))
2518 result = Qt;
2519 if (!NILP (process))
2520 CloseHandle (proc_handle);
2523 return result;
2526 #ifdef HAVE_LANGINFO_CODESET
2527 /* Emulation of nl_langinfo. Used in fns.c:Flocale_info. */
2528 char *
2529 nl_langinfo (nl_item item)
2531 /* Conversion of Posix item numbers to their Windows equivalents. */
2532 static const LCTYPE w32item[] = {
2533 LOCALE_IDEFAULTANSICODEPAGE,
2534 LOCALE_SDAYNAME1, LOCALE_SDAYNAME2, LOCALE_SDAYNAME3,
2535 LOCALE_SDAYNAME4, LOCALE_SDAYNAME5, LOCALE_SDAYNAME6, LOCALE_SDAYNAME7,
2536 LOCALE_SMONTHNAME1, LOCALE_SMONTHNAME2, LOCALE_SMONTHNAME3,
2537 LOCALE_SMONTHNAME4, LOCALE_SMONTHNAME5, LOCALE_SMONTHNAME6,
2538 LOCALE_SMONTHNAME7, LOCALE_SMONTHNAME8, LOCALE_SMONTHNAME9,
2539 LOCALE_SMONTHNAME10, LOCALE_SMONTHNAME11, LOCALE_SMONTHNAME12
2542 static char *nl_langinfo_buf = NULL;
2543 static int nl_langinfo_len = 0;
2545 if (nl_langinfo_len <= 0)
2546 nl_langinfo_buf = xmalloc (nl_langinfo_len = 1);
2548 if (item < 0 || item >= _NL_NUM)
2549 nl_langinfo_buf[0] = 0;
2550 else
2552 LCID cloc = GetThreadLocale ();
2553 int need_len = GetLocaleInfo (cloc, w32item[item] | LOCALE_USE_CP_ACP,
2554 NULL, 0);
2556 if (need_len <= 0)
2557 nl_langinfo_buf[0] = 0;
2558 else
2560 if (item == CODESET)
2562 need_len += 2; /* for the "cp" prefix */
2563 if (need_len < 8) /* for the case we call GetACP */
2564 need_len = 8;
2566 if (nl_langinfo_len <= need_len)
2567 nl_langinfo_buf = xrealloc (nl_langinfo_buf,
2568 nl_langinfo_len = need_len);
2569 if (!GetLocaleInfo (cloc, w32item[item] | LOCALE_USE_CP_ACP,
2570 nl_langinfo_buf, nl_langinfo_len))
2571 nl_langinfo_buf[0] = 0;
2572 else if (item == CODESET)
2574 if (strcmp (nl_langinfo_buf, "0") == 0 /* CP_ACP */
2575 || strcmp (nl_langinfo_buf, "1") == 0) /* CP_OEMCP */
2576 sprintf (nl_langinfo_buf, "cp%u", GetACP ());
2577 else
2579 memmove (nl_langinfo_buf + 2, nl_langinfo_buf,
2580 strlen (nl_langinfo_buf) + 1);
2581 nl_langinfo_buf[0] = 'c';
2582 nl_langinfo_buf[1] = 'p';
2587 return nl_langinfo_buf;
2589 #endif /* HAVE_LANGINFO_CODESET */
2591 DEFUN ("w32-get-locale-info", Fw32_get_locale_info,
2592 Sw32_get_locale_info, 1, 2, 0,
2593 doc: /* Return information about the Windows locale LCID.
2594 By default, return a three letter locale code which encodes the default
2595 language as the first two characters, and the country or regional variant
2596 as the third letter. For example, ENU refers to `English (United States)',
2597 while ENC means `English (Canadian)'.
2599 If the optional argument LONGFORM is t, the long form of the locale
2600 name is returned, e.g. `English (United States)' instead; if LONGFORM
2601 is a number, it is interpreted as an LCTYPE constant and the corresponding
2602 locale information is returned.
2604 If LCID (a 16-bit number) is not a valid locale, the result is nil. */)
2605 (Lisp_Object lcid, Lisp_Object longform)
2607 int got_abbrev;
2608 int got_full;
2609 char abbrev_name[32] = { 0 };
2610 char full_name[256] = { 0 };
2612 CHECK_NUMBER (lcid);
2614 if (!IsValidLocale (XINT (lcid), LCID_SUPPORTED))
2615 return Qnil;
2617 if (NILP (longform))
2619 got_abbrev = GetLocaleInfo (XINT (lcid),
2620 LOCALE_SABBREVLANGNAME | LOCALE_USE_CP_ACP,
2621 abbrev_name, sizeof (abbrev_name));
2622 if (got_abbrev)
2623 return build_string (abbrev_name);
2625 else if (EQ (longform, Qt))
2627 got_full = GetLocaleInfo (XINT (lcid),
2628 LOCALE_SLANGUAGE | LOCALE_USE_CP_ACP,
2629 full_name, sizeof (full_name));
2630 if (got_full)
2631 return DECODE_SYSTEM (build_string (full_name));
2633 else if (NUMBERP (longform))
2635 got_full = GetLocaleInfo (XINT (lcid),
2636 XINT (longform),
2637 full_name, sizeof (full_name));
2638 /* GetLocaleInfo's return value includes the terminating null
2639 character, when the returned information is a string, whereas
2640 make_unibyte_string needs the string length without the
2641 terminating null. */
2642 if (got_full)
2643 return make_unibyte_string (full_name, got_full - 1);
2646 return Qnil;
2650 DEFUN ("w32-get-current-locale-id", Fw32_get_current_locale_id,
2651 Sw32_get_current_locale_id, 0, 0, 0,
2652 doc: /* Return Windows locale id for current locale setting.
2653 This is a numerical value; use `w32-get-locale-info' to convert to a
2654 human-readable form. */)
2655 (void)
2657 return make_number (GetThreadLocale ());
2660 static DWORD
2661 int_from_hex (char * s)
2663 DWORD val = 0;
2664 static char hex[] = "0123456789abcdefABCDEF";
2665 char * p;
2667 while (*s && (p = strchr (hex, *s)) != NULL)
2669 unsigned digit = p - hex;
2670 if (digit > 15)
2671 digit -= 6;
2672 val = val * 16 + digit;
2673 s++;
2675 return val;
2678 /* We need to build a global list, since the EnumSystemLocale callback
2679 function isn't given a context pointer. */
2680 Lisp_Object Vw32_valid_locale_ids;
2682 static BOOL CALLBACK
2683 enum_locale_fn (LPTSTR localeNum)
2685 DWORD id = int_from_hex (localeNum);
2686 Vw32_valid_locale_ids = Fcons (make_number (id), Vw32_valid_locale_ids);
2687 return TRUE;
2690 DEFUN ("w32-get-valid-locale-ids", Fw32_get_valid_locale_ids,
2691 Sw32_get_valid_locale_ids, 0, 0, 0,
2692 doc: /* Return list of all valid Windows locale ids.
2693 Each id is a numerical value; use `w32-get-locale-info' to convert to a
2694 human-readable form. */)
2695 (void)
2697 Vw32_valid_locale_ids = Qnil;
2699 EnumSystemLocales (enum_locale_fn, LCID_SUPPORTED);
2701 Vw32_valid_locale_ids = Fnreverse (Vw32_valid_locale_ids);
2702 return Vw32_valid_locale_ids;
2706 DEFUN ("w32-get-default-locale-id", Fw32_get_default_locale_id, Sw32_get_default_locale_id, 0, 1, 0,
2707 doc: /* Return Windows locale id for default locale setting.
2708 By default, the system default locale setting is returned; if the optional
2709 parameter USERP is non-nil, the user default locale setting is returned.
2710 This is a numerical value; use `w32-get-locale-info' to convert to a
2711 human-readable form. */)
2712 (Lisp_Object userp)
2714 if (NILP (userp))
2715 return make_number (GetSystemDefaultLCID ());
2716 return make_number (GetUserDefaultLCID ());
2720 DEFUN ("w32-set-current-locale", Fw32_set_current_locale, Sw32_set_current_locale, 1, 1, 0,
2721 doc: /* Make Windows locale LCID be the current locale setting for Emacs.
2722 If successful, the new locale id is returned, otherwise nil. */)
2723 (Lisp_Object lcid)
2725 CHECK_NUMBER (lcid);
2727 if (!IsValidLocale (XINT (lcid), LCID_SUPPORTED))
2728 return Qnil;
2730 if (!SetThreadLocale (XINT (lcid)))
2731 return Qnil;
2733 /* Need to set input thread locale if present. */
2734 if (dwWindowsThreadId)
2735 /* Reply is not needed. */
2736 PostThreadMessage (dwWindowsThreadId, WM_EMACS_SETLOCALE, XINT (lcid), 0);
2738 return make_number (GetThreadLocale ());
2742 /* We need to build a global list, since the EnumCodePages callback
2743 function isn't given a context pointer. */
2744 Lisp_Object Vw32_valid_codepages;
2746 static BOOL CALLBACK
2747 enum_codepage_fn (LPTSTR codepageNum)
2749 DWORD id = atoi (codepageNum);
2750 Vw32_valid_codepages = Fcons (make_number (id), Vw32_valid_codepages);
2751 return TRUE;
2754 DEFUN ("w32-get-valid-codepages", Fw32_get_valid_codepages,
2755 Sw32_get_valid_codepages, 0, 0, 0,
2756 doc: /* Return list of all valid Windows codepages. */)
2757 (void)
2759 Vw32_valid_codepages = Qnil;
2761 EnumSystemCodePages (enum_codepage_fn, CP_SUPPORTED);
2763 Vw32_valid_codepages = Fnreverse (Vw32_valid_codepages);
2764 return Vw32_valid_codepages;
2768 DEFUN ("w32-get-console-codepage", Fw32_get_console_codepage,
2769 Sw32_get_console_codepage, 0, 0, 0,
2770 doc: /* Return current Windows codepage for console input. */)
2771 (void)
2773 return make_number (GetConsoleCP ());
2777 DEFUN ("w32-set-console-codepage", Fw32_set_console_codepage,
2778 Sw32_set_console_codepage, 1, 1, 0,
2779 doc: /* Make Windows codepage CP be the codepage for Emacs tty keyboard input.
2780 This codepage setting affects keyboard input in tty mode.
2781 If successful, the new CP is returned, otherwise nil. */)
2782 (Lisp_Object cp)
2784 CHECK_NUMBER (cp);
2786 if (!IsValidCodePage (XINT (cp)))
2787 return Qnil;
2789 if (!SetConsoleCP (XINT (cp)))
2790 return Qnil;
2792 return make_number (GetConsoleCP ());
2796 DEFUN ("w32-get-console-output-codepage", Fw32_get_console_output_codepage,
2797 Sw32_get_console_output_codepage, 0, 0, 0,
2798 doc: /* Return current Windows codepage for console output. */)
2799 (void)
2801 return make_number (GetConsoleOutputCP ());
2805 DEFUN ("w32-set-console-output-codepage", Fw32_set_console_output_codepage,
2806 Sw32_set_console_output_codepage, 1, 1, 0,
2807 doc: /* Make Windows codepage CP be the codepage for Emacs console output.
2808 This codepage setting affects display in tty mode.
2809 If successful, the new CP is returned, otherwise nil. */)
2810 (Lisp_Object cp)
2812 CHECK_NUMBER (cp);
2814 if (!IsValidCodePage (XINT (cp)))
2815 return Qnil;
2817 if (!SetConsoleOutputCP (XINT (cp)))
2818 return Qnil;
2820 return make_number (GetConsoleOutputCP ());
2824 DEFUN ("w32-get-codepage-charset", Fw32_get_codepage_charset,
2825 Sw32_get_codepage_charset, 1, 1, 0,
2826 doc: /* Return charset ID corresponding to codepage CP.
2827 Returns nil if the codepage is not valid. */)
2828 (Lisp_Object cp)
2830 CHARSETINFO info;
2832 CHECK_NUMBER (cp);
2834 if (!IsValidCodePage (XINT (cp)))
2835 return Qnil;
2837 if (TranslateCharsetInfo ((DWORD *) XINT (cp), &info, TCI_SRCCODEPAGE))
2838 return make_number (info.ciCharset);
2840 return Qnil;
2844 DEFUN ("w32-get-valid-keyboard-layouts", Fw32_get_valid_keyboard_layouts,
2845 Sw32_get_valid_keyboard_layouts, 0, 0, 0,
2846 doc: /* Return list of Windows keyboard languages and layouts.
2847 The return value is a list of pairs of language id and layout id. */)
2848 (void)
2850 int num_layouts = GetKeyboardLayoutList (0, NULL);
2851 HKL * layouts = (HKL *) alloca (num_layouts * sizeof (HKL));
2852 Lisp_Object obj = Qnil;
2854 if (GetKeyboardLayoutList (num_layouts, layouts) == num_layouts)
2856 while (--num_layouts >= 0)
2858 DWORD kl = (DWORD) layouts[num_layouts];
2860 obj = Fcons (Fcons (make_number (kl & 0xffff),
2861 make_number ((kl >> 16) & 0xffff)),
2862 obj);
2866 return obj;
2870 DEFUN ("w32-get-keyboard-layout", Fw32_get_keyboard_layout,
2871 Sw32_get_keyboard_layout, 0, 0, 0,
2872 doc: /* Return current Windows keyboard language and layout.
2873 The return value is the cons of the language id and the layout id. */)
2874 (void)
2876 DWORD kl = (DWORD) GetKeyboardLayout (dwWindowsThreadId);
2878 return Fcons (make_number (kl & 0xffff),
2879 make_number ((kl >> 16) & 0xffff));
2883 DEFUN ("w32-set-keyboard-layout", Fw32_set_keyboard_layout,
2884 Sw32_set_keyboard_layout, 1, 1, 0,
2885 doc: /* Make LAYOUT be the current keyboard layout for Emacs.
2886 The keyboard layout setting affects interpretation of keyboard input.
2887 If successful, the new layout id is returned, otherwise nil. */)
2888 (Lisp_Object layout)
2890 DWORD kl;
2892 CHECK_CONS (layout);
2893 CHECK_NUMBER_CAR (layout);
2894 CHECK_NUMBER_CDR (layout);
2896 kl = (XINT (XCAR (layout)) & 0xffff)
2897 | (XINT (XCDR (layout)) << 16);
2899 /* Synchronize layout with input thread. */
2900 if (dwWindowsThreadId)
2902 if (PostThreadMessage (dwWindowsThreadId, WM_EMACS_SETKEYBOARDLAYOUT,
2903 (WPARAM) kl, 0))
2905 MSG msg;
2906 GetMessage (&msg, NULL, WM_EMACS_DONE, WM_EMACS_DONE);
2908 if (msg.wParam == 0)
2909 return Qnil;
2912 else if (!ActivateKeyboardLayout ((HKL) kl, 0))
2913 return Qnil;
2915 return Fw32_get_keyboard_layout ();
2919 void
2920 syms_of_ntproc (void)
2922 DEFSYM (Qhigh, "high");
2923 DEFSYM (Qlow, "low");
2925 defsubr (&Sw32_has_winsock);
2926 defsubr (&Sw32_unload_winsock);
2928 defsubr (&Sw32_short_file_name);
2929 defsubr (&Sw32_long_file_name);
2930 defsubr (&Sw32_set_process_priority);
2931 defsubr (&Sw32_get_locale_info);
2932 defsubr (&Sw32_get_current_locale_id);
2933 defsubr (&Sw32_get_default_locale_id);
2934 defsubr (&Sw32_get_valid_locale_ids);
2935 defsubr (&Sw32_set_current_locale);
2937 defsubr (&Sw32_get_console_codepage);
2938 defsubr (&Sw32_set_console_codepage);
2939 defsubr (&Sw32_get_console_output_codepage);
2940 defsubr (&Sw32_set_console_output_codepage);
2941 defsubr (&Sw32_get_valid_codepages);
2942 defsubr (&Sw32_get_codepage_charset);
2944 defsubr (&Sw32_get_valid_keyboard_layouts);
2945 defsubr (&Sw32_get_keyboard_layout);
2946 defsubr (&Sw32_set_keyboard_layout);
2948 DEFVAR_LISP ("w32-quote-process-args", Vw32_quote_process_args,
2949 doc: /* Non-nil enables quoting of process arguments to ensure correct parsing.
2950 Because Windows does not directly pass argv arrays to child processes,
2951 programs have to reconstruct the argv array by parsing the command
2952 line string. For an argument to contain a space, it must be enclosed
2953 in double quotes or it will be parsed as multiple arguments.
2955 If the value is a character, that character will be used to escape any
2956 quote characters that appear, otherwise a suitable escape character
2957 will be chosen based on the type of the program. */);
2958 Vw32_quote_process_args = Qt;
2960 DEFVAR_LISP ("w32-start-process-show-window",
2961 Vw32_start_process_show_window,
2962 doc: /* When nil, new child processes hide their windows.
2963 When non-nil, they show their window in the method of their choice.
2964 This variable doesn't affect GUI applications, which will never be hidden. */);
2965 Vw32_start_process_show_window = Qnil;
2967 DEFVAR_LISP ("w32-start-process-share-console",
2968 Vw32_start_process_share_console,
2969 doc: /* When nil, new child processes are given a new console.
2970 When non-nil, they share the Emacs console; this has the limitation of
2971 allowing only one DOS subprocess to run at a time (whether started directly
2972 or indirectly by Emacs), and preventing Emacs from cleanly terminating the
2973 subprocess group, but may allow Emacs to interrupt a subprocess that doesn't
2974 otherwise respond to interrupts from Emacs. */);
2975 Vw32_start_process_share_console = Qnil;
2977 DEFVAR_LISP ("w32-start-process-inherit-error-mode",
2978 Vw32_start_process_inherit_error_mode,
2979 doc: /* When nil, new child processes revert to the default error mode.
2980 When non-nil, they inherit their error mode setting from Emacs, which stops
2981 them blocking when trying to access unmounted drives etc. */);
2982 Vw32_start_process_inherit_error_mode = Qt;
2984 DEFVAR_INT ("w32-pipe-read-delay", w32_pipe_read_delay,
2985 doc: /* Forced delay before reading subprocess output.
2986 This is done to improve the buffering of subprocess output, by
2987 avoiding the inefficiency of frequently reading small amounts of data.
2989 If positive, the value is the number of milliseconds to sleep before
2990 reading the subprocess output. If negative, the magnitude is the number
2991 of time slices to wait (effectively boosting the priority of the child
2992 process temporarily). A value of zero disables waiting entirely. */);
2993 w32_pipe_read_delay = 50;
2995 DEFVAR_LISP ("w32-downcase-file-names", Vw32_downcase_file_names,
2996 doc: /* Non-nil means convert all-upper case file names to lower case.
2997 This applies when performing completions and file name expansion.
2998 Note that the value of this setting also affects remote file names,
2999 so you probably don't want to set to non-nil if you use case-sensitive
3000 filesystems via ange-ftp. */);
3001 Vw32_downcase_file_names = Qnil;
3003 #if 0
3004 DEFVAR_LISP ("w32-generate-fake-inodes", Vw32_generate_fake_inodes,
3005 doc: /* Non-nil means attempt to fake realistic inode values.
3006 This works by hashing the truename of files, and should detect
3007 aliasing between long and short (8.3 DOS) names, but can have
3008 false positives because of hash collisions. Note that determining
3009 the truename of a file can be slow. */);
3010 Vw32_generate_fake_inodes = Qnil;
3011 #endif
3013 DEFVAR_LISP ("w32-get-true-file-attributes", Vw32_get_true_file_attributes,
3014 doc: /* Non-nil means determine accurate file attributes in `file-attributes'.
3015 This option controls whether to issue additional system calls to determine
3016 accurate link counts, file type, and ownership information. It is more
3017 useful for files on NTFS volumes, where hard links and file security are
3018 supported, than on volumes of the FAT family.
3020 Without these system calls, link count will always be reported as 1 and file
3021 ownership will be attributed to the current user.
3022 The default value `local' means only issue these system calls for files
3023 on local fixed drives. A value of nil means never issue them.
3024 Any other non-nil value means do this even on remote and removable drives
3025 where the performance impact may be noticeable even on modern hardware. */);
3026 Vw32_get_true_file_attributes = Qlocal;
3028 staticpro (&Vw32_valid_locale_ids);
3029 staticpro (&Vw32_valid_codepages);
3031 /* end of w32proc.c */