1 /* Process support for GNU Emacs on the Microsoft Windows API.
3 Copyright (C) 1992, 1995, 1999-2015 Free Software Foundation, Inc.
5 This file is part of GNU Emacs.
7 GNU Emacs is free software: you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation, either version 3 of the License, or
10 (at your option) any later version.
12 GNU Emacs is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
21 Drew Bliss Oct 14, 1993
22 Adapted from alarm.c by Tim Fleehart
25 #include <mingw_time.h>
37 /* must include CRT headers *before* config.h */
47 #if defined(__GNUC__) && !defined(__MINGW64__)
48 /* This definition is missing from mingw.org headers, but not MinGW64
50 extern BOOL WINAPI
IsValidLocale (LCID
, DWORD
);
53 #ifdef HAVE_LANGINFO_CODESET
60 #include "w32common.h"
65 #include "syssignal.h"
67 #include "dispextern.h" /* for xstrcasecmp */
70 #define RVA_TO_PTR(var,section,filedata) \
71 ((void *)((section)->PointerToRawData \
72 + ((DWORD_PTR)(var) - (section)->VirtualAddress) \
73 + (filedata).file_base))
75 /* Signal handlers...SIG_DFL == 0 so this is initialized correctly. */
76 static signal_handler sig_handlers
[NSIG
];
78 static sigset_t sig_mask
;
80 static CRITICAL_SECTION crit_sig
;
82 /* Improve on the CRT 'signal' implementation so that we could record
83 the SIGCHLD handler and fake interval timers. */
85 sys_signal (int sig
, signal_handler handler
)
89 /* SIGCHLD is needed for supporting subprocesses, see sys_kill
90 below. SIGALRM and SIGPROF are used by setitimer. All the
91 others are the only ones supported by the MS runtime. */
92 if (!(sig
== SIGCHLD
|| sig
== SIGSEGV
|| sig
== SIGILL
93 || sig
== SIGFPE
|| sig
== SIGABRT
|| sig
== SIGTERM
94 || sig
== SIGALRM
|| sig
== SIGPROF
))
99 old
= sig_handlers
[sig
];
100 /* SIGABRT is treated specially because w32.c installs term_ntproc
101 as its handler, so we don't want to override that afterwards.
102 Aborting Emacs works specially anyway: either by calling
103 emacs_abort directly or through terminate_due_to_signal, which
104 calls emacs_abort through emacs_raise. */
105 if (!(sig
== SIGABRT
&& old
== term_ntproc
))
107 sig_handlers
[sig
] = handler
;
108 if (!(sig
== SIGCHLD
|| sig
== SIGALRM
|| sig
== SIGPROF
))
109 signal (sig
, handler
);
114 /* Emulate sigaction. */
116 sigaction (int sig
, const struct sigaction
*act
, struct sigaction
*oact
)
118 signal_handler old
= SIG_DFL
;
122 old
= sys_signal (sig
, act
->sa_handler
);
124 old
= sig_handlers
[sig
];
133 oact
->sa_handler
= old
;
135 oact
->sa_mask
= empty_mask
;
140 /* Emulate signal sets and blocking of signals used by timers. */
143 sigemptyset (sigset_t
*set
)
150 sigaddset (sigset_t
*set
, int signo
)
157 if (signo
< 0 || signo
>= NSIG
)
163 *set
|= (1U << signo
);
169 sigfillset (sigset_t
*set
)
182 sigprocmask (int how
, const sigset_t
*set
, sigset_t
*oset
)
184 if (!(how
== SIG_BLOCK
|| how
== SIG_UNBLOCK
|| how
== SIG_SETMASK
))
205 /* FIXME: Catch signals that are blocked and reissue them when
206 they are unblocked. Important for SIGALRM and SIGPROF only. */
215 pthread_sigmask (int how
, const sigset_t
*set
, sigset_t
*oset
)
217 if (sigprocmask (how
, set
, oset
) == -1)
223 sigismember (const sigset_t
*set
, int signo
)
225 if (signo
< 0 || signo
>= NSIG
)
230 if (signo
> sizeof (*set
) * BITS_PER_CHAR
)
233 return (*set
& (1U << signo
)) != 0;
249 setpgid (pid_t pid
, pid_t pgid
)
260 /* Emulations of interval timers.
262 Limitations: only ITIMER_REAL and ITIMER_PROF are supported.
264 Implementation: a separate thread is started for each timer type,
265 the thread calls the appropriate signal handler when the timer
266 expires, after stopping the thread which installed the timer. */
269 volatile ULONGLONG expire
;
270 volatile ULONGLONG reload
;
271 volatile int terminate
;
273 HANDLE caller_thread
;
277 static ULONGLONG ticks_now
;
278 static struct itimer_data real_itimer
, prof_itimer
;
279 static ULONGLONG clocks_min
;
280 /* If non-zero, itimers are disabled. Used during shutdown, when we
281 delete the critical sections used by the timer threads. */
282 static int disable_itimers
;
284 static CRITICAL_SECTION crit_real
, crit_prof
;
286 /* GetThreadTimes is not available on Windows 9X and possibly also on 2K. */
287 typedef BOOL (WINAPI
*GetThreadTimes_Proc
) (
289 LPFILETIME lpCreationTime
,
290 LPFILETIME lpExitTime
,
291 LPFILETIME lpKernelTime
,
292 LPFILETIME lpUserTime
);
294 static GetThreadTimes_Proc s_pfn_Get_Thread_Times
;
296 #define MAX_SINGLE_SLEEP 30
297 #define TIMER_TICKS_PER_SEC 1000
299 /* Return a suitable time value, in 1-ms units, for THREAD, a handle
300 to a thread. If THREAD is NULL or an invalid handle, return the
301 current wall-clock time since January 1, 1601 (UTC). Otherwise,
302 return the sum of kernel and user times used by THREAD since it was
303 created, plus its creation time. */
305 w32_get_timer_time (HANDLE thread
)
308 int use_system_time
= 1;
309 /* The functions below return times in 100-ns units. */
310 const int tscale
= 10 * TIMER_TICKS_PER_SEC
;
312 if (thread
&& thread
!= INVALID_HANDLE_VALUE
313 && s_pfn_Get_Thread_Times
!= NULL
)
315 FILETIME creation_ftime
, exit_ftime
, kernel_ftime
, user_ftime
;
316 ULARGE_INTEGER temp_creation
, temp_kernel
, temp_user
;
318 if (s_pfn_Get_Thread_Times (thread
, &creation_ftime
, &exit_ftime
,
319 &kernel_ftime
, &user_ftime
))
322 temp_creation
.LowPart
= creation_ftime
.dwLowDateTime
;
323 temp_creation
.HighPart
= creation_ftime
.dwHighDateTime
;
324 temp_kernel
.LowPart
= kernel_ftime
.dwLowDateTime
;
325 temp_kernel
.HighPart
= kernel_ftime
.dwHighDateTime
;
326 temp_user
.LowPart
= user_ftime
.dwLowDateTime
;
327 temp_user
.HighPart
= user_ftime
.dwHighDateTime
;
329 temp_creation
.QuadPart
/ tscale
+ temp_kernel
.QuadPart
/ tscale
330 + temp_user
.QuadPart
/ tscale
;
333 DebPrint (("GetThreadTimes failed with error code %lu\n",
339 FILETIME current_ftime
;
342 GetSystemTimeAsFileTime (¤t_ftime
);
344 temp
.LowPart
= current_ftime
.dwLowDateTime
;
345 temp
.HighPart
= current_ftime
.dwHighDateTime
;
347 retval
= temp
.QuadPart
/ tscale
;
353 /* Thread function for a timer thread. */
355 timer_loop (LPVOID arg
)
357 struct itimer_data
*itimer
= (struct itimer_data
*)arg
;
358 int which
= itimer
->type
;
359 int sig
= (which
== ITIMER_REAL
) ? SIGALRM
: SIGPROF
;
360 CRITICAL_SECTION
*crit
= (which
== ITIMER_REAL
) ? &crit_real
: &crit_prof
;
361 const DWORD max_sleep
= MAX_SINGLE_SLEEP
* 1000 / TIMER_TICKS_PER_SEC
;
362 HANDLE hth
= (which
== ITIMER_REAL
) ? NULL
: itimer
->caller_thread
;
367 signal_handler handler
;
368 ULONGLONG now
, expire
, reload
;
370 /* Load new values if requested by setitimer. */
371 EnterCriticalSection (crit
);
372 expire
= itimer
->expire
;
373 reload
= itimer
->reload
;
374 LeaveCriticalSection (crit
);
375 if (itimer
->terminate
)
385 if (expire
> (now
= w32_get_timer_time (hth
)))
386 sleep_time
= expire
- now
;
389 /* Don't sleep too long at a time, to be able to see the
390 termination flag without too long a delay. */
391 while (sleep_time
> max_sleep
)
393 if (itimer
->terminate
)
396 EnterCriticalSection (crit
);
397 expire
= itimer
->expire
;
398 LeaveCriticalSection (crit
);
400 (expire
> (now
= w32_get_timer_time (hth
))) ? expire
- now
: 0;
402 if (itimer
->terminate
)
406 Sleep (sleep_time
* 1000 / TIMER_TICKS_PER_SEC
);
407 /* Always sleep past the expiration time, to make sure we
408 never call the handler _before_ the expiration time,
409 always slightly after it. Sleep(5) makes sure we don't
410 hog the CPU by calling 'w32_get_timer_time' with high
411 frequency, and also let other threads work. */
412 while (w32_get_timer_time (hth
) < expire
)
416 EnterCriticalSection (crit
);
417 expire
= itimer
->expire
;
418 LeaveCriticalSection (crit
);
423 handler
= sig_handlers
[sig
];
424 if (!(handler
== SIG_DFL
|| handler
== SIG_IGN
|| handler
== SIG_ERR
)
425 /* FIXME: Don't ignore masked signals. Instead, record that
426 they happened and reissue them when the signal is
428 && !sigismember (&sig_mask
, sig
)
429 /* Simulate masking of SIGALRM and SIGPROF when processing
431 && !fatal_error_in_progress
432 && itimer
->caller_thread
)
434 /* Simulate a signal delivered to the thread which installed
435 the timer, by suspending that thread while the handler
437 HANDLE th
= itimer
->caller_thread
;
438 DWORD result
= SuspendThread (th
);
440 if (result
== (DWORD
)-1)
447 /* Update expiration time and loop. */
448 EnterCriticalSection (crit
);
449 expire
= itimer
->expire
;
452 LeaveCriticalSection (crit
);
455 reload
= itimer
->reload
;
458 now
= w32_get_timer_time (hth
);
461 ULONGLONG lag
= now
- expire
;
463 /* If we missed some opportunities (presumably while
464 sleeping or while the signal handler ran), skip
467 expire
= now
- (lag
% reload
);
473 expire
= 0; /* become idle */
474 itimer
->expire
= expire
;
475 LeaveCriticalSection (crit
);
481 stop_timer_thread (int which
)
483 struct itimer_data
*itimer
=
484 (which
== ITIMER_REAL
) ? &real_itimer
: &prof_itimer
;
486 DWORD err
, exit_code
= 255;
489 /* Signal the thread that it should terminate. */
490 itimer
->terminate
= 1;
492 if (itimer
->timer_thread
== NULL
)
495 /* Wait for the timer thread to terminate voluntarily, then kill it
496 if it doesn't. This loop waits twice more than the maximum
497 amount of time a timer thread sleeps, see above. */
498 for (i
= 0; i
< MAX_SINGLE_SLEEP
/ 5; i
++)
500 if (!((status
= GetExitCodeThread (itimer
->timer_thread
, &exit_code
))
501 && exit_code
== STILL_ACTIVE
))
505 if ((status
== FALSE
&& (err
= GetLastError ()) == ERROR_INVALID_HANDLE
)
506 || exit_code
== STILL_ACTIVE
)
508 if (!(status
== FALSE
&& err
== ERROR_INVALID_HANDLE
))
509 TerminateThread (itimer
->timer_thread
, 0);
513 CloseHandle (itimer
->timer_thread
);
514 itimer
->timer_thread
= NULL
;
515 if (itimer
->caller_thread
)
517 CloseHandle (itimer
->caller_thread
);
518 itimer
->caller_thread
= NULL
;
522 /* This is called at shutdown time from term_ntproc. */
526 if (real_itimer
.timer_thread
)
527 stop_timer_thread (ITIMER_REAL
);
528 if (prof_itimer
.timer_thread
)
529 stop_timer_thread (ITIMER_PROF
);
531 /* We are going to delete the critical sections, so timers cannot
535 DeleteCriticalSection (&crit_real
);
536 DeleteCriticalSection (&crit_prof
);
537 DeleteCriticalSection (&crit_sig
);
540 /* This is called at initialization time from init_ntproc. */
544 /* GetThreadTimes is not available on all versions of Windows, so
545 need to probe for its availability dynamically, and call it
546 through a pointer. */
547 s_pfn_Get_Thread_Times
= NULL
; /* in case dumped Emacs comes with a value */
548 if (os_subtype
!= OS_9X
)
549 s_pfn_Get_Thread_Times
=
550 (GetThreadTimes_Proc
)GetProcAddress (GetModuleHandle ("kernel32.dll"),
553 /* Make sure we start with zeroed out itimer structures, since
554 dumping may have left there traces of threads long dead. */
555 memset (&real_itimer
, 0, sizeof real_itimer
);
556 memset (&prof_itimer
, 0, sizeof prof_itimer
);
558 InitializeCriticalSection (&crit_real
);
559 InitializeCriticalSection (&crit_prof
);
560 InitializeCriticalSection (&crit_sig
);
566 start_timer_thread (int which
)
568 DWORD exit_code
, tid
;
570 struct itimer_data
*itimer
=
571 (which
== ITIMER_REAL
) ? &real_itimer
: &prof_itimer
;
573 if (itimer
->timer_thread
574 && GetExitCodeThread (itimer
->timer_thread
, &exit_code
)
575 && exit_code
== STILL_ACTIVE
)
578 /* Clean up after possibly exited thread. */
579 if (itimer
->timer_thread
)
581 CloseHandle (itimer
->timer_thread
);
582 itimer
->timer_thread
= NULL
;
584 if (itimer
->caller_thread
)
586 CloseHandle (itimer
->caller_thread
);
587 itimer
->caller_thread
= NULL
;
590 /* Start a new thread. */
591 if (!DuplicateHandle (GetCurrentProcess (), GetCurrentThread (),
592 GetCurrentProcess (), &th
, 0, FALSE
,
593 DUPLICATE_SAME_ACCESS
))
598 itimer
->terminate
= 0;
599 itimer
->type
= which
;
600 itimer
->caller_thread
= th
;
601 /* Request that no more than 64KB of stack be reserved for this
602 thread, to avoid reserving too much memory, which would get in
603 the way of threads we start to wait for subprocesses. See also
605 itimer
->timer_thread
= CreateThread (NULL
, 64 * 1024, timer_loop
,
606 (void *)itimer
, 0x00010000, &tid
);
608 if (!itimer
->timer_thread
)
610 CloseHandle (itimer
->caller_thread
);
611 itimer
->caller_thread
= NULL
;
616 /* This is needed to make sure that the timer thread running for
617 profiling gets CPU as soon as the Sleep call terminates. */
618 if (which
== ITIMER_PROF
)
619 SetThreadPriority (itimer
->timer_thread
, THREAD_PRIORITY_TIME_CRITICAL
);
624 /* Most of the code of getitimer and setitimer (but not of their
625 subroutines) was shamelessly stolen from itimer.c in the DJGPP
626 library, see www.delorie.com/djgpp. */
628 getitimer (int which
, struct itimerval
*value
)
630 volatile ULONGLONG
*t_expire
;
631 volatile ULONGLONG
*t_reload
;
632 ULONGLONG expire
, reload
;
634 CRITICAL_SECTION
*crit
;
635 struct itimer_data
*itimer
;
646 if (which
!= ITIMER_REAL
&& which
!= ITIMER_PROF
)
652 itimer
= (which
== ITIMER_REAL
) ? &real_itimer
: &prof_itimer
;
654 ticks_now
= w32_get_timer_time ((which
== ITIMER_REAL
)
656 : GetCurrentThread ());
658 t_expire
= &itimer
->expire
;
659 t_reload
= &itimer
->reload
;
660 crit
= (which
== ITIMER_REAL
) ? &crit_real
: &crit_prof
;
662 EnterCriticalSection (crit
);
665 LeaveCriticalSection (crit
);
670 value
->it_value
.tv_sec
= expire
/ TIMER_TICKS_PER_SEC
;
672 (expire
% TIMER_TICKS_PER_SEC
) * (__int64
)1000000 / TIMER_TICKS_PER_SEC
;
673 value
->it_value
.tv_usec
= usecs
;
674 value
->it_interval
.tv_sec
= reload
/ TIMER_TICKS_PER_SEC
;
676 (reload
% TIMER_TICKS_PER_SEC
) * (__int64
)1000000 / TIMER_TICKS_PER_SEC
;
677 value
->it_interval
.tv_usec
= usecs
;
683 setitimer(int which
, struct itimerval
*value
, struct itimerval
*ovalue
)
685 volatile ULONGLONG
*t_expire
, *t_reload
;
686 ULONGLONG expire
, reload
, expire_old
, reload_old
;
688 CRITICAL_SECTION
*crit
;
689 struct itimerval tem
, *ptem
;
694 /* Posix systems expect timer values smaller than the resolution of
695 the system clock be rounded up to the clock resolution. First
696 time we are called, measure the clock tick resolution. */
701 for (t1
= w32_get_timer_time (NULL
);
702 (t2
= w32_get_timer_time (NULL
)) == t1
; )
704 clocks_min
= t2
- t1
;
712 if (getitimer (which
, ptem
)) /* also sets ticks_now */
713 return -1; /* errno already set */
716 (which
== ITIMER_REAL
) ? &real_itimer
.expire
: &prof_itimer
.expire
;
718 (which
== ITIMER_REAL
) ? &real_itimer
.reload
: &prof_itimer
.reload
;
720 crit
= (which
== ITIMER_REAL
) ? &crit_real
: &crit_prof
;
723 || (value
->it_value
.tv_sec
== 0 && value
->it_value
.tv_usec
== 0))
725 EnterCriticalSection (crit
);
726 /* Disable the timer. */
729 LeaveCriticalSection (crit
);
733 reload
= value
->it_interval
.tv_sec
* TIMER_TICKS_PER_SEC
;
735 usecs
= value
->it_interval
.tv_usec
;
736 if (value
->it_interval
.tv_sec
== 0
737 && usecs
&& usecs
* TIMER_TICKS_PER_SEC
< clocks_min
* 1000000)
741 usecs
*= TIMER_TICKS_PER_SEC
;
742 reload
+= usecs
/ 1000000;
745 expire
= value
->it_value
.tv_sec
* TIMER_TICKS_PER_SEC
;
746 usecs
= value
->it_value
.tv_usec
;
747 if (value
->it_value
.tv_sec
== 0
748 && usecs
* TIMER_TICKS_PER_SEC
< clocks_min
* 1000000)
752 usecs
*= TIMER_TICKS_PER_SEC
;
753 expire
+= usecs
/ 1000000;
758 EnterCriticalSection (crit
);
759 expire_old
= *t_expire
;
760 reload_old
= *t_reload
;
761 if (!(expire
== expire_old
&& reload
== reload_old
))
766 LeaveCriticalSection (crit
);
768 return start_timer_thread (which
);
774 #ifdef HAVE_SETITIMER
775 struct itimerval new_values
, old_values
;
777 new_values
.it_value
.tv_sec
= seconds
;
778 new_values
.it_value
.tv_usec
= 0;
779 new_values
.it_interval
.tv_sec
= new_values
.it_interval
.tv_usec
= 0;
781 if (setitimer (ITIMER_REAL
, &new_values
, &old_values
) < 0)
783 return old_values
.it_value
.tv_sec
;
789 /* Defined in <process.h> which conflicts with the local copy */
792 /* Child process management list. */
793 int child_proc_count
= 0;
794 child_process child_procs
[ MAX_CHILDREN
];
796 static DWORD WINAPI
reader_thread (void *arg
);
798 /* Find an unused process slot. */
805 for (cp
= child_procs
+ (child_proc_count
-1); cp
>= child_procs
; cp
--)
806 if (!CHILD_ACTIVE (cp
) && cp
->procinfo
.hProcess
== NULL
)
808 if (child_proc_count
== MAX_CHILDREN
)
811 child_process
*dead_cp
= NULL
;
813 DebPrint (("new_child: No vacant slots, looking for dead processes\n"));
814 for (cp
= child_procs
+ (child_proc_count
-1); cp
>= child_procs
; cp
--)
815 if (!CHILD_ACTIVE (cp
) && cp
->procinfo
.hProcess
)
819 if (!GetExitCodeProcess (cp
->procinfo
.hProcess
, &status
))
821 DebPrint (("new_child.GetExitCodeProcess: error %lu for PID %lu\n",
822 GetLastError (), cp
->procinfo
.dwProcessId
));
823 status
= STILL_ACTIVE
;
825 if (status
!= STILL_ACTIVE
826 || WaitForSingleObject (cp
->procinfo
.hProcess
, 0) == WAIT_OBJECT_0
)
828 DebPrint (("new_child: Freeing slot of dead process %d, fd %d\n",
829 cp
->procinfo
.dwProcessId
, cp
->fd
));
830 CloseHandle (cp
->procinfo
.hProcess
);
831 cp
->procinfo
.hProcess
= NULL
;
832 CloseHandle (cp
->procinfo
.hThread
);
833 cp
->procinfo
.hThread
= NULL
;
834 /* Free up to 2 dead slots at a time, so that if we
835 have a lot of them, they will eventually all be
836 freed when the tornado ends. */
850 if (child_proc_count
== MAX_CHILDREN
)
852 cp
= &child_procs
[child_proc_count
++];
855 /* Last opportunity to avoid leaking handles before we forget them
857 if (cp
->procinfo
.hProcess
)
858 CloseHandle (cp
->procinfo
.hProcess
);
859 if (cp
->procinfo
.hThread
)
860 CloseHandle (cp
->procinfo
.hThread
);
861 memset (cp
, 0, sizeof (*cp
));
864 cp
->procinfo
.hProcess
= NULL
;
865 cp
->status
= STATUS_READ_ERROR
;
867 /* use manual reset event so that select() will function properly */
868 cp
->char_avail
= CreateEvent (NULL
, TRUE
, FALSE
, NULL
);
871 cp
->char_consumed
= CreateEvent (NULL
, FALSE
, FALSE
, NULL
);
872 if (cp
->char_consumed
)
874 /* The 0x00010000 flag is STACK_SIZE_PARAM_IS_A_RESERVATION.
875 It means that the 64K stack we are requesting in the 2nd
876 argument is how much memory should be reserved for the
877 stack. If we don't use this flag, the memory requested
878 by the 2nd argument is the amount actually _committed_,
879 but Windows reserves 8MB of memory for each thread's
880 stack. (The 8MB figure comes from the -stack
881 command-line argument we pass to the linker when building
882 Emacs, but that's because we need a large stack for
883 Emacs's main thread.) Since we request 2GB of reserved
884 memory at startup (see w32heap.c), which is close to the
885 maximum memory available for a 32-bit process on Windows,
886 the 8MB reservation for each thread causes failures in
887 starting subprocesses, because we create a thread running
888 reader_thread for each subprocess. As 8MB of stack is
889 way too much for reader_thread, forcing Windows to
890 reserve less wins the day. */
891 cp
->thrd
= CreateThread (NULL
, 64 * 1024, reader_thread
, cp
,
902 delete_child (child_process
*cp
)
906 /* Should not be deleting a child that is still needed. */
907 for (i
= 0; i
< MAXDESC
; i
++)
908 if (fd_info
[i
].cp
== cp
)
911 if (!CHILD_ACTIVE (cp
) && cp
->procinfo
.hProcess
== NULL
)
914 /* reap thread if necessary */
919 if (GetExitCodeThread (cp
->thrd
, &rc
) && rc
== STILL_ACTIVE
)
921 /* let the thread exit cleanly if possible */
922 cp
->status
= STATUS_READ_ERROR
;
923 SetEvent (cp
->char_consumed
);
925 /* We used to forcibly terminate the thread here, but it
926 is normally unnecessary, and in abnormal cases, the worst that
927 will happen is we have an extra idle thread hanging around
928 waiting for the zombie process. */
929 if (WaitForSingleObject (cp
->thrd
, 1000) != WAIT_OBJECT_0
)
931 DebPrint (("delete_child.WaitForSingleObject (thread) failed "
932 "with %lu for fd %ld\n", GetLastError (), cp
->fd
));
933 TerminateThread (cp
->thrd
, 0);
937 CloseHandle (cp
->thrd
);
942 CloseHandle (cp
->char_avail
);
943 cp
->char_avail
= NULL
;
945 if (cp
->char_consumed
)
947 CloseHandle (cp
->char_consumed
);
948 cp
->char_consumed
= NULL
;
951 /* update child_proc_count (highest numbered slot in use plus one) */
952 if (cp
== child_procs
+ child_proc_count
- 1)
954 for (i
= child_proc_count
-1; i
>= 0; i
--)
955 if (CHILD_ACTIVE (&child_procs
[i
])
956 || child_procs
[i
].procinfo
.hProcess
!= NULL
)
958 child_proc_count
= i
+ 1;
963 child_proc_count
= 0;
966 /* Find a child by pid. */
967 static child_process
*
968 find_child_pid (DWORD pid
)
972 for (cp
= child_procs
+ (child_proc_count
-1); cp
>= child_procs
; cp
--)
973 if ((CHILD_ACTIVE (cp
) || cp
->procinfo
.hProcess
!= NULL
)
980 release_listen_threads (void)
984 for (i
= child_proc_count
- 1; i
>= 0; i
--)
986 if (CHILD_ACTIVE (&child_procs
[i
])
987 && (fd_info
[child_procs
[i
].fd
].flags
& FILE_LISTEN
))
988 child_procs
[i
].status
= STATUS_READ_ERROR
;
992 /* Thread proc for child process and socket reader threads. Each thread
993 is normally blocked until woken by select() to check for input by
994 reading one char. When the read completes, char_avail is signaled
995 to wake up the select emulator and the thread blocks itself again. */
997 reader_thread (void *arg
)
1002 cp
= (child_process
*)arg
;
1004 /* We have to wait for the go-ahead before we can start */
1006 || WaitForSingleObject (cp
->char_consumed
, INFINITE
) != WAIT_OBJECT_0
1014 if (cp
->fd
>= 0 && fd_info
[cp
->fd
].flags
& FILE_LISTEN
)
1015 rc
= _sys_wait_accept (cp
->fd
);
1017 rc
= _sys_read_ahead (cp
->fd
);
1019 /* Don't bother waiting for the event if we already have been
1020 told to exit by delete_child. */
1021 if (cp
->status
== STATUS_READ_ERROR
|| !cp
->char_avail
)
1024 /* The name char_avail is a misnomer - it really just means the
1025 read-ahead has completed, whether successfully or not. */
1026 if (!SetEvent (cp
->char_avail
))
1028 DebPrint (("reader_thread.SetEvent(0x%x) failed with %lu for fd %ld (PID %d)\n",
1029 (DWORD_PTR
)cp
->char_avail
, GetLastError (),
1034 if (rc
== STATUS_READ_ERROR
)
1037 /* If the read died, the child has died so let the thread die */
1038 if (rc
== STATUS_READ_FAILED
)
1041 /* Don't bother waiting for the acknowledge if we already have
1042 been told to exit by delete_child. */
1043 if (cp
->status
== STATUS_READ_ERROR
|| !cp
->char_consumed
)
1046 /* Wait until our input is acknowledged before reading again */
1047 if (WaitForSingleObject (cp
->char_consumed
, INFINITE
) != WAIT_OBJECT_0
)
1049 DebPrint (("reader_thread.WaitForSingleObject failed with "
1050 "%lu for fd %ld\n", GetLastError (), cp
->fd
));
1053 /* delete_child sets status to STATUS_READ_ERROR when it wants
1055 if (cp
->status
== STATUS_READ_ERROR
)
1061 /* To avoid Emacs changing directory, we just record here the
1062 directory the new process should start in. This is set just before
1063 calling sys_spawnve, and is not generally valid at any other time.
1064 Note that this directory's name is UTF-8 encoded. */
1065 static char * process_dir
;
1068 create_child (char *exe
, char *cmdline
, char *env
, int is_gui_app
,
1069 pid_t
* pPid
, child_process
*cp
)
1072 SECURITY_ATTRIBUTES sec_attrs
;
1074 SECURITY_DESCRIPTOR sec_desc
;
1077 char dir
[ MAX_PATH
];
1081 if (cp
== NULL
) emacs_abort ();
1083 memset (&start
, 0, sizeof (start
));
1084 start
.cb
= sizeof (start
);
1087 if (NILP (Vw32_start_process_show_window
) && !is_gui_app
)
1088 start
.dwFlags
= STARTF_USESTDHANDLES
| STARTF_USESHOWWINDOW
;
1090 start
.dwFlags
= STARTF_USESTDHANDLES
;
1091 start
.wShowWindow
= SW_HIDE
;
1093 start
.hStdInput
= GetStdHandle (STD_INPUT_HANDLE
);
1094 start
.hStdOutput
= GetStdHandle (STD_OUTPUT_HANDLE
);
1095 start
.hStdError
= GetStdHandle (STD_ERROR_HANDLE
);
1096 #endif /* HAVE_NTGUI */
1099 /* Explicitly specify no security */
1100 if (!InitializeSecurityDescriptor (&sec_desc
, SECURITY_DESCRIPTOR_REVISION
))
1102 if (!SetSecurityDescriptorDacl (&sec_desc
, TRUE
, NULL
, FALSE
))
1105 sec_attrs
.nLength
= sizeof (sec_attrs
);
1106 sec_attrs
.lpSecurityDescriptor
= NULL
/* &sec_desc */;
1107 sec_attrs
.bInheritHandle
= FALSE
;
1109 filename_to_ansi (process_dir
, dir
);
1110 /* Can't use unixtodos_filename here, since that needs its file name
1111 argument encoded in UTF-8. OTOH, process_dir, which _is_ in
1112 UTF-8, points, to the directory computed by our caller, and we
1113 don't want to modify that, either. */
1114 for (p
= dir
; *p
; p
= CharNextA (p
))
1118 /* CreateProcess handles batch files as exe specially. This special
1119 handling fails when both the batch file and arguments are quoted.
1120 We pass NULL as exe to avoid the special handling. */
1121 if (exe
&& cmdline
[0] == '"' &&
1122 (ext
= strrchr (exe
, '.')) &&
1123 (xstrcasecmp (ext
, ".bat") == 0
1124 || xstrcasecmp (ext
, ".cmd") == 0))
1127 flags
= (!NILP (Vw32_start_process_share_console
)
1128 ? CREATE_NEW_PROCESS_GROUP
1129 : CREATE_NEW_CONSOLE
);
1130 if (NILP (Vw32_start_process_inherit_error_mode
))
1131 flags
|= CREATE_DEFAULT_ERROR_MODE
;
1132 if (!CreateProcessA (exe
, cmdline
, &sec_attrs
, NULL
, TRUE
,
1133 flags
, env
, dir
, &start
, &cp
->procinfo
))
1136 cp
->pid
= (int) cp
->procinfo
.dwProcessId
;
1138 /* Hack for Windows 95, which assigns large (ie negative) pids */
1147 DebPrint (("create_child.CreateProcess failed: %ld\n", GetLastError ()););
1151 /* create_child doesn't know what emacs's file handle will be for waiting
1152 on output from the child, so we need to make this additional call
1153 to register the handle with the process
1154 This way the select emulator knows how to match file handles with
1155 entries in child_procs. */
1157 register_child (pid_t pid
, int fd
)
1161 cp
= find_child_pid ((DWORD
)pid
);
1164 DebPrint (("register_child unable to find pid %lu\n", pid
));
1169 DebPrint (("register_child registered fd %d with pid %lu\n", fd
, pid
));
1174 /* thread is initially blocked until select is called; set status so
1175 that select will release thread */
1176 cp
->status
= STATUS_READ_ACKNOWLEDGED
;
1178 /* attach child_process to fd_info */
1179 if (fd_info
[fd
].cp
!= NULL
)
1181 DebPrint (("register_child: fd_info[%d] apparently in use!\n", fd
));
1185 fd_info
[fd
].cp
= cp
;
1188 /* Called from waitpid when a process exits. */
1190 reap_subprocess (child_process
*cp
)
1192 if (cp
->procinfo
.hProcess
)
1194 /* Reap the process */
1196 /* Process should have already died before we are called. */
1197 if (WaitForSingleObject (cp
->procinfo
.hProcess
, 0) != WAIT_OBJECT_0
)
1198 DebPrint (("reap_subprocess: child for fd %d has not died yet!", cp
->fd
));
1200 CloseHandle (cp
->procinfo
.hProcess
);
1201 cp
->procinfo
.hProcess
= NULL
;
1202 CloseHandle (cp
->procinfo
.hThread
);
1203 cp
->procinfo
.hThread
= NULL
;
1206 /* If cp->fd was not closed yet, we might be still reading the
1207 process output, so don't free its resources just yet. The call
1208 to delete_child on behalf of this subprocess will be made by
1209 sys_read when the subprocess output is fully read. */
1214 /* Wait for a child process specified by PID, or for any of our
1215 existing child processes (if PID is nonpositive) to die. When it
1216 does, close its handle. Return the pid of the process that died
1217 and fill in STATUS if non-NULL. */
1220 waitpid (pid_t pid
, int *status
, int options
)
1222 DWORD active
, retval
;
1224 child_process
*cp
, *cps
[MAX_CHILDREN
];
1225 HANDLE wait_hnd
[MAX_CHILDREN
];
1227 int dont_wait
= (options
& WNOHANG
) != 0;
1230 /* According to Posix:
1232 PID = -1 means status is requested for any child process.
1234 PID > 0 means status is requested for a single child process
1237 PID = 0 means status is requested for any child process whose
1238 process group ID is equal to that of the calling process. But
1239 since Windows has only a limited support for process groups (only
1240 for console processes and only for the purposes of passing
1241 Ctrl-BREAK signal to them), and since we have no documented way
1242 of determining whether a given process belongs to our group, we
1245 PID < -1 means status is requested for any child process whose
1246 process group ID is equal to the absolute value of PID. Again,
1247 since we don't support process groups, we treat that as -1. */
1252 /* We are requested to wait for a specific child. */
1253 for (cp
= child_procs
+ (child_proc_count
-1); cp
>= child_procs
; cp
--)
1255 /* Some child_procs might be sockets; ignore them. Also
1256 ignore subprocesses whose output is not yet completely
1258 if (CHILD_ACTIVE (cp
)
1259 && cp
->procinfo
.hProcess
1268 if (cp
->fd
< 0 || (fd_info
[cp
->fd
].flags
& FILE_AT_EOF
) != 0)
1270 wait_hnd
[nh
] = cp
->procinfo
.hProcess
;
1276 /* PID specifies our subprocess, but its status is not
1283 /* No such child process, or nothing to wait for, so fail. */
1290 for (cp
= child_procs
+ (child_proc_count
-1); cp
>= child_procs
; cp
--)
1292 if (CHILD_ACTIVE (cp
)
1293 && cp
->procinfo
.hProcess
1294 && (cp
->fd
< 0 || (fd_info
[cp
->fd
].flags
& FILE_AT_EOF
) != 0))
1296 wait_hnd
[nh
] = cp
->procinfo
.hProcess
;
1303 /* Nothing to wait on, so fail. */
1312 timeout_ms
= 1000; /* check for quit about once a second. */
1317 active
= WaitForMultipleObjects (nh
, wait_hnd
, FALSE
, timeout_ms
);
1318 } while (active
== WAIT_TIMEOUT
&& !dont_wait
);
1320 if (active
== WAIT_FAILED
)
1325 else if (active
== WAIT_TIMEOUT
&& dont_wait
)
1327 /* PID specifies our subprocess, but it didn't exit yet, so its
1328 status is not yet available. */
1330 DebPrint (("Wait: PID %d not reap yet\n", cp
->pid
));
1334 else if (active
>= WAIT_OBJECT_0
1335 && active
< WAIT_OBJECT_0
+MAXIMUM_WAIT_OBJECTS
)
1337 active
-= WAIT_OBJECT_0
;
1339 else if (active
>= WAIT_ABANDONED_0
1340 && active
< WAIT_ABANDONED_0
+MAXIMUM_WAIT_OBJECTS
)
1342 active
-= WAIT_ABANDONED_0
;
1347 if (!GetExitCodeProcess (wait_hnd
[active
], &retval
))
1349 DebPrint (("Wait.GetExitCodeProcess failed with %lu\n",
1353 if (retval
== STILL_ACTIVE
)
1355 /* Should never happen. */
1356 DebPrint (("Wait.WaitForMultipleObjects returned an active process\n"));
1357 if (pid
> 0 && dont_wait
)
1363 /* Massage the exit code from the process to match the format expected
1364 by the WIFSTOPPED et al macros in syswait.h. Only WIFSIGNALED and
1365 WIFEXITED are supported; WIFSTOPPED doesn't make sense under NT. */
1367 if (retval
== STATUS_CONTROL_C_EXIT
)
1372 if (pid
> 0 && active
!= 0)
1377 DebPrint (("Wait signaled with process pid %d\n", cp
->pid
));
1382 reap_subprocess (cp
);
1387 /* Old versions of w32api headers don't have separate 32-bit and
1388 64-bit defines, but the one they have matches the 32-bit variety. */
1389 #ifndef IMAGE_NT_OPTIONAL_HDR32_MAGIC
1390 # define IMAGE_NT_OPTIONAL_HDR32_MAGIC IMAGE_NT_OPTIONAL_HDR_MAGIC
1391 # define IMAGE_OPTIONAL_HEADER32 IMAGE_OPTIONAL_HEADER
1394 /* Implementation note: This function works with file names encoded in
1395 the current ANSI codepage. */
1397 w32_executable_type (char * filename
,
1399 int * is_cygnus_app
,
1402 file_data executable
;
1405 /* Default values in case we can't tell for sure. */
1406 *is_dos_app
= FALSE
;
1407 *is_cygnus_app
= FALSE
;
1408 *is_gui_app
= FALSE
;
1410 if (!open_input_file (&executable
, filename
))
1413 p
= strrchr (filename
, '.');
1415 /* We can only identify DOS .com programs from the extension. */
1416 if (p
&& xstrcasecmp (p
, ".com") == 0)
1418 else if (p
&& (xstrcasecmp (p
, ".bat") == 0
1419 || xstrcasecmp (p
, ".cmd") == 0))
1421 /* A DOS shell script - it appears that CreateProcess is happy to
1422 accept this (somewhat surprisingly); presumably it looks at
1423 COMSPEC to determine what executable to actually invoke.
1424 Therefore, we have to do the same here as well. */
1425 /* Actually, I think it uses the program association for that
1426 extension, which is defined in the registry. */
1427 p
= egetenv ("COMSPEC");
1429 w32_executable_type (p
, is_dos_app
, is_cygnus_app
, is_gui_app
);
1433 /* Look for DOS .exe signature - if found, we must also check that
1434 it isn't really a 16- or 32-bit Windows exe, since both formats
1435 start with a DOS program stub. Note that 16-bit Windows
1436 executables use the OS/2 1.x format. */
1438 IMAGE_DOS_HEADER
* dos_header
;
1439 IMAGE_NT_HEADERS
* nt_header
;
1441 dos_header
= (PIMAGE_DOS_HEADER
) executable
.file_base
;
1442 if (dos_header
->e_magic
!= IMAGE_DOS_SIGNATURE
)
1445 nt_header
= (PIMAGE_NT_HEADERS
) ((unsigned char *) dos_header
+ dos_header
->e_lfanew
);
1447 if ((char *) nt_header
> (char *) dos_header
+ executable
.size
)
1449 /* Some dos headers (pkunzip) have bogus e_lfanew fields. */
1452 else if (nt_header
->Signature
!= IMAGE_NT_SIGNATURE
1453 && LOWORD (nt_header
->Signature
) != IMAGE_OS2_SIGNATURE
)
1457 else if (nt_header
->Signature
== IMAGE_NT_SIGNATURE
)
1459 IMAGE_DATA_DIRECTORY
*data_dir
= NULL
;
1460 if (nt_header
->OptionalHeader
.Magic
== IMAGE_NT_OPTIONAL_HDR32_MAGIC
)
1462 /* Ensure we are using the 32 bit structure. */
1463 IMAGE_OPTIONAL_HEADER32
*opt
1464 = (IMAGE_OPTIONAL_HEADER32
*) &(nt_header
->OptionalHeader
);
1465 data_dir
= opt
->DataDirectory
;
1466 *is_gui_app
= (opt
->Subsystem
== IMAGE_SUBSYSTEM_WINDOWS_GUI
);
1468 /* MingW 3.12 has the required 64 bit structs, but in case older
1469 versions don't, only check 64 bit exes if we know how. */
1470 #ifdef IMAGE_NT_OPTIONAL_HDR64_MAGIC
1471 else if (nt_header
->OptionalHeader
.Magic
1472 == IMAGE_NT_OPTIONAL_HDR64_MAGIC
)
1474 IMAGE_OPTIONAL_HEADER64
*opt
1475 = (IMAGE_OPTIONAL_HEADER64
*) &(nt_header
->OptionalHeader
);
1476 data_dir
= opt
->DataDirectory
;
1477 *is_gui_app
= (opt
->Subsystem
== IMAGE_SUBSYSTEM_WINDOWS_GUI
);
1482 /* Look for cygwin.dll in DLL import list. */
1483 IMAGE_DATA_DIRECTORY import_dir
=
1484 data_dir
[IMAGE_DIRECTORY_ENTRY_IMPORT
];
1485 IMAGE_IMPORT_DESCRIPTOR
* imports
;
1486 IMAGE_SECTION_HEADER
* section
;
1488 section
= rva_to_section (import_dir
.VirtualAddress
, nt_header
);
1489 imports
= RVA_TO_PTR (import_dir
.VirtualAddress
, section
,
1492 for ( ; imports
->Name
; imports
++)
1494 char * dllname
= RVA_TO_PTR (imports
->Name
, section
,
1497 /* The exact name of the cygwin dll has changed with
1498 various releases, but hopefully this will be reasonably
1500 if (strncmp (dllname
, "cygwin", 6) == 0)
1502 *is_cygnus_app
= TRUE
;
1511 close_file_data (&executable
);
1515 compare_env (const void *strp1
, const void *strp2
)
1517 const char *str1
= *(const char **)strp1
, *str2
= *(const char **)strp2
;
1519 while (*str1
&& *str2
&& *str1
!= '=' && *str2
!= '=')
1521 /* Sort order in command.com/cmd.exe is based on uppercasing
1522 names, so do the same here. */
1523 if (toupper (*str1
) > toupper (*str2
))
1525 else if (toupper (*str1
) < toupper (*str2
))
1530 if (*str1
== '=' && *str2
== '=')
1532 else if (*str1
== '=')
1539 merge_and_sort_env (char **envp1
, char **envp2
, char **new_envp
)
1541 char **optr
, **nptr
;
1553 num
+= optr
- envp2
;
1555 qsort (new_envp
, num
, sizeof (char *), compare_env
);
1560 /* When a new child process is created we need to register it in our list,
1561 so intercept spawn requests. */
1563 sys_spawnve (int mode
, char *cmdname
, char **argv
, char **envp
)
1565 Lisp_Object program
, full
;
1566 char *cmdline
, *env
, *parg
, **targ
;
1570 int is_dos_app
, is_cygnus_app
, is_gui_app
;
1572 /* We pass our process ID to our children by setting up an environment
1573 variable in their environment. */
1574 char ppid_env_var_buffer
[64];
1575 char *extra_env
[] = {ppid_env_var_buffer
, NULL
};
1576 /* These are the characters that cause an argument to need quoting.
1577 Arguments with whitespace characters need quoting to prevent the
1578 argument being split into two or more. Arguments with wildcards
1579 are also quoted, for consistency with posix platforms, where wildcards
1580 are not expanded if we run the program directly without a shell.
1581 Some extra whitespace characters need quoting in Cygwin programs,
1582 so this list is conditionally modified below. */
1583 char *sepchars
= " \t*?";
1584 /* This is for native w32 apps; modified below for Cygwin apps. */
1585 char escape_char
= '\\';
1586 char cmdname_a
[MAX_PATH
];
1588 /* We don't care about the other modes */
1589 if (mode
!= _P_NOWAIT
)
1595 /* Handle executable names without an executable suffix. The caller
1596 already searched exec-path and verified the file is executable,
1597 but start-process doesn't do that for file names that are already
1598 absolute. So we double-check this here, just in case. */
1599 if (faccessat (AT_FDCWD
, cmdname
, X_OK
, AT_EACCESS
) != 0)
1601 struct gcpro gcpro1
;
1603 program
= build_string (cmdname
);
1606 openp (Vexec_path
, program
, Vexec_suffixes
, &full
, make_number (X_OK
), 0);
1613 program
= ENCODE_FILE (full
);
1614 cmdname
= SDATA (program
);
1618 char *p
= alloca (strlen (cmdname
) + 1);
1620 /* Don't change the command name we were passed by our caller
1621 (unixtodos_filename below will destructively mirror forward
1623 cmdname
= strcpy (p
, cmdname
);
1626 /* make sure argv[0] and cmdname are both in DOS format */
1627 unixtodos_filename (cmdname
);
1628 /* argv[0] was encoded by caller using ENCODE_FILE, so it is in
1629 UTF-8. All the other arguments are encoded by ENCODE_SYSTEM or
1630 some such, and are in some ANSI codepage. We need to have
1631 argv[0] encoded in ANSI codepage. */
1632 filename_to_ansi (cmdname
, cmdname_a
);
1633 /* We explicitly require that the command's file name be encodable
1634 in the current ANSI codepage, because we will be invoking it via
1636 if (_mbspbrk (cmdname_a
, "?"))
1641 /* From here on, CMDNAME is an ANSI-encoded string. */
1642 cmdname
= cmdname_a
;
1645 /* Determine whether program is a 16-bit DOS executable, or a 32-bit Windows
1646 executable that is implicitly linked to the Cygnus dll (implying it
1647 was compiled with the Cygnus GNU toolchain and hence relies on
1648 cygwin.dll to parse the command line - we use this to decide how to
1649 escape quote chars in command line args that must be quoted).
1651 Also determine whether it is a GUI app, so that we don't hide its
1652 initial window unless specifically requested. */
1653 w32_executable_type (cmdname
, &is_dos_app
, &is_cygnus_app
, &is_gui_app
);
1655 /* On Windows 95, if cmdname is a DOS app, we invoke a helper
1656 application to start it by specifying the helper app as cmdname,
1657 while leaving the real app name as argv[0]. */
1662 cmdname
= alloca (MAX_PATH
);
1663 if (egetenv ("CMDPROXY"))
1664 strcpy (cmdname
, egetenv ("CMDPROXY"));
1666 strcpy (lispstpcpy (cmdname
, Vinvocation_directory
), "cmdproxy.exe");
1668 /* Can't use unixtodos_filename here, since that needs its file
1669 name argument encoded in UTF-8. */
1670 for (p
= cmdname
; *p
; p
= CharNextA (p
))
1675 /* we have to do some conjuring here to put argv and envp into the
1676 form CreateProcess wants... argv needs to be a space separated/null
1677 terminated list of parameters, and envp is a null
1678 separated/double-null terminated list of parameters.
1680 Additionally, zero-length args and args containing whitespace or
1681 quote chars need to be wrapped in double quotes - for this to work,
1682 embedded quotes need to be escaped as well. The aim is to ensure
1683 the child process reconstructs the argv array we start with
1684 exactly, so we treat quotes at the beginning and end of arguments
1687 The w32 GNU-based library from Cygnus doubles quotes to escape
1688 them, while MSVC uses backslash for escaping. (Actually the MSVC
1689 startup code does attempt to recognize doubled quotes and accept
1690 them, but gets it wrong and ends up requiring three quotes to get a
1691 single embedded quote!) So by default we decide whether to use
1692 quote or backslash as the escape character based on whether the
1693 binary is apparently a Cygnus compiled app.
1695 Note that using backslash to escape embedded quotes requires
1696 additional special handling if an embedded quote is already
1697 preceded by backslash, or if an arg requiring quoting ends with
1698 backslash. In such cases, the run of escape characters needs to be
1699 doubled. For consistency, we apply this special handling as long
1700 as the escape character is not quote.
1702 Since we have no idea how large argv and envp are likely to be we
1703 figure out list lengths on the fly and allocate them. */
1705 if (!NILP (Vw32_quote_process_args
))
1708 /* Override escape char by binding w32-quote-process-args to
1709 desired character, or use t for auto-selection. */
1710 if (INTEGERP (Vw32_quote_process_args
))
1711 escape_char
= XINT (Vw32_quote_process_args
);
1713 escape_char
= is_cygnus_app
? '"' : '\\';
1716 /* Cygwin apps needs quoting a bit more often. */
1717 if (escape_char
== '"')
1718 sepchars
= "\r\n\t\f '";
1726 int need_quotes
= 0;
1727 int escape_char_run
= 0;
1733 if (escape_char
== '"' && *p
== '\\')
1734 /* If it's a Cygwin app, \ needs to be escaped. */
1738 /* allow for embedded quotes to be escaped */
1741 /* handle the case where the embedded quote is already escaped */
1742 if (escape_char_run
> 0)
1744 /* To preserve the arg exactly, we need to double the
1745 preceding escape characters (plus adding one to
1746 escape the quote character itself). */
1747 arglen
+= escape_char_run
;
1750 else if (strchr (sepchars
, *p
) != NULL
)
1755 if (*p
== escape_char
&& escape_char
!= '"')
1758 escape_char_run
= 0;
1763 /* handle the case where the arg ends with an escape char - we
1764 must not let the enclosing quote be escaped. */
1765 if (escape_char_run
> 0)
1766 arglen
+= escape_char_run
;
1768 arglen
+= strlen (*targ
++) + 1;
1770 cmdline
= alloca (arglen
);
1776 int need_quotes
= 0;
1784 if ((strchr (sepchars
, *p
) != NULL
) || *p
== '"')
1789 int escape_char_run
= 0;
1795 /* last = p + strlen (p) - 1; */
1798 /* This version does not escape quotes if they occur at the
1799 beginning or end of the arg - this could lead to incorrect
1800 behavior when the arg itself represents a command line
1801 containing quoted args. I believe this was originally done
1802 as a hack to make some things work, before
1803 `w32-quote-process-args' was added. */
1806 if (*p
== '"' && p
> first
&& p
< last
)
1807 *parg
++ = escape_char
; /* escape embedded quotes */
1815 /* double preceding escape chars if any */
1816 while (escape_char_run
> 0)
1818 *parg
++ = escape_char
;
1821 /* escape all quote chars, even at beginning or end */
1822 *parg
++ = escape_char
;
1824 else if (escape_char
== '"' && *p
== '\\')
1828 if (*p
== escape_char
&& escape_char
!= '"')
1831 escape_char_run
= 0;
1833 /* double escape chars before enclosing quote */
1834 while (escape_char_run
> 0)
1836 *parg
++ = escape_char
;
1844 strcpy (parg
, *targ
);
1845 parg
+= strlen (*targ
);
1855 numenv
= 1; /* for end null */
1858 arglen
+= strlen (*targ
++) + 1;
1861 /* extra env vars... */
1862 sprintf (ppid_env_var_buffer
, "EM_PARENT_PROCESS_ID=%lu",
1863 GetCurrentProcessId ());
1864 arglen
+= strlen (ppid_env_var_buffer
) + 1;
1867 /* merge env passed in and extra env into one, and sort it. */
1868 targ
= (char **) alloca (numenv
* sizeof (char *));
1869 merge_and_sort_env (envp
, extra_env
, targ
);
1871 /* concatenate env entries. */
1872 env
= alloca (arglen
);
1876 strcpy (parg
, *targ
);
1877 parg
+= strlen (*targ
++);
1890 /* Now create the process. */
1891 if (!create_child (cmdname
, cmdline
, env
, is_gui_app
, &pid
, cp
))
1901 /* Emulate the select call
1902 Wait for available input on any of the given rfds, or timeout if
1903 a timeout is given and no input is detected
1904 wfds and efds are not supported and must be NULL.
1906 For simplicity, we detect the death of child processes here and
1907 synchronously call the SIGCHLD handler. Since it is possible for
1908 children to be created without a corresponding pipe handle from which
1909 to read output, we wait separately on the process handles as well as
1910 the char_avail events for each process pipe. We only call
1911 wait/reap_process when the process actually terminates.
1913 To reduce the number of places in which Emacs can be hung such that
1914 C-g is not able to interrupt it, we always wait on interrupt_handle
1915 (which is signaled by the input thread when C-g is detected). If we
1916 detect that we were woken up by C-g, we return -1 with errno set to
1917 EINTR as on Unix. */
1919 /* From w32console.c */
1920 extern HANDLE keyboard_handle
;
1922 /* From w32xfns.c */
1923 extern HANDLE interrupt_handle
;
1925 /* From process.c */
1926 extern int proc_buffered_char
[];
1929 sys_select (int nfds
, SELECT_TYPE
*rfds
, SELECT_TYPE
*wfds
, SELECT_TYPE
*efds
,
1930 struct timespec
*timeout
, void *ignored
)
1933 DWORD timeout_ms
, start_time
;
1936 child_process
*cp
, *cps
[MAX_CHILDREN
];
1937 HANDLE wait_hnd
[MAXDESC
+ MAX_CHILDREN
];
1938 int fdindex
[MAXDESC
]; /* mapping from wait handles back to descriptors */
1941 timeout
? (timeout
->tv_sec
* 1000 + timeout
->tv_nsec
/ 1000000) : INFINITE
;
1943 /* If the descriptor sets are NULL but timeout isn't, then just Sleep. */
1944 if (rfds
== NULL
&& wfds
== NULL
&& efds
== NULL
&& timeout
!= NULL
)
1950 /* Otherwise, we only handle rfds, so fail otherwise. */
1951 if (rfds
== NULL
|| wfds
!= NULL
|| efds
!= NULL
)
1961 /* If interrupt_handle is available and valid, always wait on it, to
1962 detect C-g (quit). */
1964 if (interrupt_handle
&& interrupt_handle
!= INVALID_HANDLE_VALUE
)
1966 wait_hnd
[0] = interrupt_handle
;
1971 /* Build a list of pipe handles to wait on. */
1972 for (i
= 0; i
< nfds
; i
++)
1973 if (FD_ISSET (i
, &orfds
))
1977 if (keyboard_handle
)
1979 /* Handle stdin specially */
1980 wait_hnd
[nh
] = keyboard_handle
;
1985 /* Check for any emacs-generated input in the queue since
1986 it won't be detected in the wait */
1987 if (detect_input_pending ())
1992 else if (noninteractive
)
1994 if (handle_file_notifications (NULL
))
2000 /* Child process and socket/comm port input. */
2004 int current_status
= cp
->status
;
2006 if (current_status
== STATUS_READ_ACKNOWLEDGED
)
2008 /* Tell reader thread which file handle to use. */
2010 /* Wake up the reader thread for this process */
2011 cp
->status
= STATUS_READ_READY
;
2012 if (!SetEvent (cp
->char_consumed
))
2013 DebPrint (("sys_select.SetEvent failed with "
2014 "%lu for fd %ld\n", GetLastError (), i
));
2017 #ifdef CHECK_INTERLOCK
2018 /* slightly crude cross-checking of interlock between threads */
2020 current_status
= cp
->status
;
2021 if (WaitForSingleObject (cp
->char_avail
, 0) == WAIT_OBJECT_0
)
2023 /* char_avail has been signaled, so status (which may
2024 have changed) should indicate read has completed
2025 but has not been acknowledged. */
2026 current_status
= cp
->status
;
2027 if (current_status
!= STATUS_READ_SUCCEEDED
2028 && current_status
!= STATUS_READ_FAILED
)
2029 DebPrint (("char_avail set, but read not completed: status %d\n",
2034 /* char_avail has not been signaled, so status should
2035 indicate that read is in progress; small possibility
2036 that read has completed but event wasn't yet signaled
2037 when we tested it (because a context switch occurred
2038 or if running on separate CPUs). */
2039 if (current_status
!= STATUS_READ_READY
2040 && current_status
!= STATUS_READ_IN_PROGRESS
2041 && current_status
!= STATUS_READ_SUCCEEDED
2042 && current_status
!= STATUS_READ_FAILED
)
2043 DebPrint (("char_avail reset, but read status is bad: %d\n",
2047 wait_hnd
[nh
] = cp
->char_avail
;
2049 if (!wait_hnd
[nh
]) emacs_abort ();
2052 DebPrint (("select waiting on child %d fd %d\n",
2053 cp
-child_procs
, i
));
2058 /* Unable to find something to wait on for this fd, skip */
2060 /* Note that this is not a fatal error, and can in fact
2061 happen in unusual circumstances. Specifically, if
2062 sys_spawnve fails, eg. because the program doesn't
2063 exist, and debug-on-error is t so Fsignal invokes a
2064 nested input loop, then the process output pipe is
2065 still included in input_wait_mask with no child_proc
2066 associated with it. (It is removed when the debugger
2067 exits the nested input loop and the error is thrown.) */
2069 DebPrint (("sys_select: fd %ld is invalid! ignoring\n", i
));
2075 /* Add handles of child processes. */
2077 for (cp
= child_procs
+ (child_proc_count
-1); cp
>= child_procs
; cp
--)
2078 /* Some child_procs might be sockets; ignore them. Also some
2079 children may have died already, but we haven't finished reading
2080 the process output; ignore them too. */
2081 if ((CHILD_ACTIVE (cp
) && cp
->procinfo
.hProcess
)
2083 || (fd_info
[cp
->fd
].flags
& FILE_SEND_SIGCHLD
) == 0
2084 || (fd_info
[cp
->fd
].flags
& FILE_AT_EOF
) != 0)
2087 wait_hnd
[nh
+ nc
] = cp
->procinfo
.hProcess
;
2092 /* Nothing to look for, so we didn't find anything */
2099 if (handle_file_notifications (NULL
))
2105 start_time
= GetTickCount ();
2107 /* Wait for input or child death to be signaled. If user input is
2108 allowed, then also accept window messages. */
2109 if (FD_ISSET (0, &orfds
))
2110 active
= MsgWaitForMultipleObjects (nh
+ nc
, wait_hnd
, FALSE
, timeout_ms
,
2113 active
= WaitForMultipleObjects (nh
+ nc
, wait_hnd
, FALSE
, timeout_ms
);
2115 if (active
== WAIT_FAILED
)
2117 DebPrint (("select.WaitForMultipleObjects (%d, %lu) failed with %lu\n",
2118 nh
+ nc
, timeout_ms
, GetLastError ()));
2119 /* don't return EBADF - this causes wait_reading_process_output to
2120 abort; WAIT_FAILED is returned when single-stepping under
2121 Windows 95 after switching thread focus in debugger, and
2122 possibly at other times. */
2126 else if (active
== WAIT_TIMEOUT
)
2130 if (handle_file_notifications (NULL
))
2135 else if (active
>= WAIT_OBJECT_0
2136 && active
< WAIT_OBJECT_0
+MAXIMUM_WAIT_OBJECTS
)
2138 active
-= WAIT_OBJECT_0
;
2140 else if (active
>= WAIT_ABANDONED_0
2141 && active
< WAIT_ABANDONED_0
+MAXIMUM_WAIT_OBJECTS
)
2143 active
-= WAIT_ABANDONED_0
;
2148 /* Loop over all handles after active (now officially documented as
2149 being the first signaled handle in the array). We do this to
2150 ensure fairness, so that all channels with data available will be
2151 processed - otherwise higher numbered channels could be starved. */
2154 if (active
== nh
+ nc
)
2156 /* There are messages in the lisp thread's queue; we must
2157 drain the queue now to ensure they are processed promptly,
2158 because if we don't do so, we will not be woken again until
2159 further messages arrive.
2161 NB. If ever we allow window message procedures to callback
2162 into lisp, we will need to ensure messages are dispatched
2163 at a safe time for lisp code to be run (*), and we may also
2164 want to provide some hooks in the dispatch loop to cater
2165 for modeless dialogs created by lisp (ie. to register
2166 window handles to pass to IsDialogMessage).
2168 (*) Note that MsgWaitForMultipleObjects above is an
2169 internal dispatch point for messages that are sent to
2170 windows created by this thread. */
2171 if (drain_message_queue ()
2172 /* If drain_message_queue returns non-zero, that means
2173 we received a WM_EMACS_FILENOTIFY message. If this
2174 is a TTY frame, we must signal the caller that keyboard
2175 input is available, so that w32_console_read_socket
2176 will be called to pick up the notifications. If we
2177 don't do that, file notifications will only work when
2178 the Emacs TTY frame has focus. */
2179 && FRAME_TERMCAP_P (SELECTED_FRAME ())
2180 /* they asked for stdin reads */
2181 && FD_ISSET (0, &orfds
)
2182 /* the stdin handle is valid */
2190 else if (active
>= nh
)
2192 cp
= cps
[active
- nh
];
2194 /* We cannot always signal SIGCHLD immediately; if we have not
2195 finished reading the process output, we must delay sending
2196 SIGCHLD until we do. */
2198 if (cp
->fd
>= 0 && (fd_info
[cp
->fd
].flags
& FILE_AT_EOF
) == 0)
2199 fd_info
[cp
->fd
].flags
|= FILE_SEND_SIGCHLD
;
2200 /* SIG_DFL for SIGCHLD is ignore */
2201 else if (sig_handlers
[SIGCHLD
] != SIG_DFL
&&
2202 sig_handlers
[SIGCHLD
] != SIG_IGN
)
2205 DebPrint (("select calling SIGCHLD handler for pid %d\n",
2208 sig_handlers
[SIGCHLD
] (SIGCHLD
);
2211 else if (fdindex
[active
] == -1)
2213 /* Quit (C-g) was detected. */
2217 else if (fdindex
[active
] == 0)
2219 /* Keyboard input available */
2225 /* must be a socket or pipe - read ahead should have
2226 completed, either succeeding or failing. */
2227 FD_SET (fdindex
[active
], rfds
);
2231 /* Even though wait_reading_process_output only reads from at most
2232 one channel, we must process all channels here so that we reap
2233 all children that have died. */
2234 while (++active
< nh
+ nc
)
2235 if (WaitForSingleObject (wait_hnd
[active
], 0) == WAIT_OBJECT_0
)
2237 } while (active
< nh
+ nc
);
2241 if (handle_file_notifications (NULL
))
2245 /* If no input has arrived and timeout hasn't expired, wait again. */
2248 DWORD elapsed
= GetTickCount () - start_time
;
2250 if (timeout_ms
> elapsed
) /* INFINITE is MAX_UINT */
2252 if (timeout_ms
!= INFINITE
)
2253 timeout_ms
-= elapsed
;
2254 goto count_children
;
2261 /* Substitute for certain kill () operations */
2263 static BOOL CALLBACK
2264 find_child_console (HWND hwnd
, LPARAM arg
)
2266 child_process
* cp
= (child_process
*) arg
;
2269 GetWindowThreadProcessId (hwnd
, &process_id
);
2270 if (process_id
== cp
->procinfo
.dwProcessId
)
2272 char window_class
[32];
2274 GetClassName (hwnd
, window_class
, sizeof (window_class
));
2275 if (strcmp (window_class
,
2276 (os_subtype
== OS_9X
)
2278 : "ConsoleWindowClass") == 0)
2288 /* Emulate 'kill', but only for other processes. */
2290 sys_kill (pid_t pid
, int sig
)
2294 int need_to_free
= 0;
2297 /* Each process is in its own process group. */
2301 /* Only handle signals that will result in the process dying */
2303 && sig
!= SIGINT
&& sig
!= SIGKILL
&& sig
!= SIGQUIT
&& sig
!= SIGHUP
)
2311 /* It will take _some_ time before PID 4 or less on Windows will
2318 proc_hand
= OpenProcess (PROCESS_QUERY_INFORMATION
, 0, pid
);
2319 if (proc_hand
== NULL
)
2321 DWORD err
= GetLastError ();
2325 case ERROR_ACCESS_DENIED
: /* existing process, but access denied */
2328 case ERROR_INVALID_PARAMETER
: /* process PID does not exist */
2334 CloseHandle (proc_hand
);
2338 cp
= find_child_pid (pid
);
2341 /* We were passed a PID of something other than our subprocess.
2342 If that is our own PID, we will send to ourself a message to
2343 close the selected frame, which does not necessarily
2344 terminates Emacs. But then we are not supposed to call
2345 sys_kill with our own PID. */
2346 proc_hand
= OpenProcess (PROCESS_TERMINATE
, 0, pid
);
2347 if (proc_hand
== NULL
)
2356 proc_hand
= cp
->procinfo
.hProcess
;
2357 pid
= cp
->procinfo
.dwProcessId
;
2359 /* Try to locate console window for process. */
2360 EnumWindows (find_child_console
, (LPARAM
) cp
);
2363 if (sig
== SIGINT
|| sig
== SIGQUIT
)
2365 if (NILP (Vw32_start_process_share_console
) && cp
&& cp
->hwnd
)
2367 BYTE control_scan_code
= (BYTE
) MapVirtualKey (VK_CONTROL
, 0);
2368 /* Fake Ctrl-C for SIGINT, and Ctrl-Break for SIGQUIT. */
2369 BYTE vk_break_code
= (sig
== SIGINT
) ? 'C' : VK_CANCEL
;
2370 BYTE break_scan_code
= (BYTE
) MapVirtualKey (vk_break_code
, 0);
2371 HWND foreground_window
;
2373 if (break_scan_code
== 0)
2375 /* Fake Ctrl-C for SIGQUIT if we can't manage Ctrl-Break. */
2376 vk_break_code
= 'C';
2377 break_scan_code
= (BYTE
) MapVirtualKey (vk_break_code
, 0);
2380 foreground_window
= GetForegroundWindow ();
2381 if (foreground_window
)
2383 /* NT 5.0, and apparently also Windows 98, will not allow
2384 a Window to be set to foreground directly without the
2385 user's involvement. The workaround is to attach
2386 ourselves to the thread that owns the foreground
2387 window, since that is the only thread that can set the
2388 foreground window. */
2389 DWORD foreground_thread
, child_thread
;
2391 GetWindowThreadProcessId (foreground_window
, NULL
);
2392 if (foreground_thread
== GetCurrentThreadId ()
2393 || !AttachThreadInput (GetCurrentThreadId (),
2394 foreground_thread
, TRUE
))
2395 foreground_thread
= 0;
2397 child_thread
= GetWindowThreadProcessId (cp
->hwnd
, NULL
);
2398 if (child_thread
== GetCurrentThreadId ()
2399 || !AttachThreadInput (GetCurrentThreadId (),
2400 child_thread
, TRUE
))
2403 /* Set the foreground window to the child. */
2404 if (SetForegroundWindow (cp
->hwnd
))
2406 /* Generate keystrokes as if user had typed Ctrl-Break or
2408 keybd_event (VK_CONTROL
, control_scan_code
, 0, 0);
2409 keybd_event (vk_break_code
, break_scan_code
,
2410 (vk_break_code
== 'C' ? 0 : KEYEVENTF_EXTENDEDKEY
), 0);
2411 keybd_event (vk_break_code
, break_scan_code
,
2412 (vk_break_code
== 'C' ? 0 : KEYEVENTF_EXTENDEDKEY
)
2413 | KEYEVENTF_KEYUP
, 0);
2414 keybd_event (VK_CONTROL
, control_scan_code
,
2415 KEYEVENTF_KEYUP
, 0);
2417 /* Sleep for a bit to give time for Emacs frame to respond
2418 to focus change events (if Emacs was active app). */
2421 SetForegroundWindow (foreground_window
);
2423 /* Detach from the foreground and child threads now that
2424 the foreground switching is over. */
2425 if (foreground_thread
)
2426 AttachThreadInput (GetCurrentThreadId (),
2427 foreground_thread
, FALSE
);
2429 AttachThreadInput (GetCurrentThreadId (),
2430 child_thread
, FALSE
);
2433 /* Ctrl-Break is NT equivalent of SIGINT. */
2434 else if (!GenerateConsoleCtrlEvent (CTRL_BREAK_EVENT
, pid
))
2436 DebPrint (("sys_kill.GenerateConsoleCtrlEvent return %d "
2437 "for pid %lu\n", GetLastError (), pid
));
2444 if (NILP (Vw32_start_process_share_console
) && cp
&& cp
->hwnd
)
2447 if (os_subtype
== OS_9X
)
2450 Another possibility is to try terminating the VDM out-right by
2451 calling the Shell VxD (id 0x17) V86 interface, function #4
2452 "SHELL_Destroy_VM", ie.
2458 First need to determine the current VM handle, and then arrange for
2459 the shellapi call to be made from the system vm (by using
2460 Switch_VM_and_callback).
2462 Could try to invoke DestroyVM through CallVxD.
2466 /* On Windows 95, posting WM_QUIT causes the 16-bit subsystem
2467 to hang when cmdproxy is used in conjunction with
2468 command.com for an interactive shell. Posting
2469 WM_CLOSE pops up a dialog that, when Yes is selected,
2470 does the same thing. TerminateProcess is also less
2471 than ideal in that subprocesses tend to stick around
2472 until the machine is shutdown, but at least it
2473 doesn't freeze the 16-bit subsystem. */
2474 PostMessage (cp
->hwnd
, WM_QUIT
, 0xff, 0);
2476 if (!TerminateProcess (proc_hand
, 0xff))
2478 DebPrint (("sys_kill.TerminateProcess returned %d "
2479 "for pid %lu\n", GetLastError (), pid
));
2486 PostMessage (cp
->hwnd
, WM_CLOSE
, 0, 0);
2488 /* Kill the process. On W32 this doesn't kill child processes
2489 so it doesn't work very well for shells which is why it's not
2490 used in every case. */
2491 else if (!TerminateProcess (proc_hand
, 0xff))
2493 DebPrint (("sys_kill.TerminateProcess returned %d "
2494 "for pid %lu\n", GetLastError (), pid
));
2501 CloseHandle (proc_hand
);
2506 /* The following two routines are used to manipulate stdin, stdout, and
2507 stderr of our child processes.
2509 Assuming that in, out, and err are *not* inheritable, we make them
2510 stdin, stdout, and stderr of the child as follows:
2512 - Save the parent's current standard handles.
2513 - Set the std handles to inheritable duplicates of the ones being passed in.
2514 (Note that _get_osfhandle() is an io.h procedure that retrieves the
2515 NT file handle for a crt file descriptor.)
2516 - Spawn the child, which inherits in, out, and err as stdin,
2517 stdout, and stderr. (see Spawnve)
2518 - Close the std handles passed to the child.
2519 - Reset the parent's standard handles to the saved handles.
2520 (see reset_standard_handles)
2521 We assume that the caller closes in, out, and err after calling us. */
2524 prepare_standard_handles (int in
, int out
, int err
, HANDLE handles
[3])
2527 HANDLE newstdin
, newstdout
, newstderr
;
2529 parent
= GetCurrentProcess ();
2531 handles
[0] = GetStdHandle (STD_INPUT_HANDLE
);
2532 handles
[1] = GetStdHandle (STD_OUTPUT_HANDLE
);
2533 handles
[2] = GetStdHandle (STD_ERROR_HANDLE
);
2535 /* make inheritable copies of the new handles */
2536 if (!DuplicateHandle (parent
,
2537 (HANDLE
) _get_osfhandle (in
),
2542 DUPLICATE_SAME_ACCESS
))
2543 report_file_error ("Duplicating input handle for child", Qnil
);
2545 if (!DuplicateHandle (parent
,
2546 (HANDLE
) _get_osfhandle (out
),
2551 DUPLICATE_SAME_ACCESS
))
2552 report_file_error ("Duplicating output handle for child", Qnil
);
2554 if (!DuplicateHandle (parent
,
2555 (HANDLE
) _get_osfhandle (err
),
2560 DUPLICATE_SAME_ACCESS
))
2561 report_file_error ("Duplicating error handle for child", Qnil
);
2563 /* and store them as our std handles */
2564 if (!SetStdHandle (STD_INPUT_HANDLE
, newstdin
))
2565 report_file_error ("Changing stdin handle", Qnil
);
2567 if (!SetStdHandle (STD_OUTPUT_HANDLE
, newstdout
))
2568 report_file_error ("Changing stdout handle", Qnil
);
2570 if (!SetStdHandle (STD_ERROR_HANDLE
, newstderr
))
2571 report_file_error ("Changing stderr handle", Qnil
);
2575 reset_standard_handles (int in
, int out
, int err
, HANDLE handles
[3])
2577 /* close the duplicated handles passed to the child */
2578 CloseHandle (GetStdHandle (STD_INPUT_HANDLE
));
2579 CloseHandle (GetStdHandle (STD_OUTPUT_HANDLE
));
2580 CloseHandle (GetStdHandle (STD_ERROR_HANDLE
));
2582 /* now restore parent's saved std handles */
2583 SetStdHandle (STD_INPUT_HANDLE
, handles
[0]);
2584 SetStdHandle (STD_OUTPUT_HANDLE
, handles
[1]);
2585 SetStdHandle (STD_ERROR_HANDLE
, handles
[2]);
2589 set_process_dir (char * dir
)
2594 /* To avoid problems with winsock implementations that work over dial-up
2595 connections causing or requiring a connection to exist while Emacs is
2596 running, Emacs no longer automatically loads winsock on startup if it
2597 is present. Instead, it will be loaded when open-network-stream is
2600 To allow full control over when winsock is loaded, we provide these
2601 two functions to dynamically load and unload winsock. This allows
2602 dial-up users to only be connected when they actually need to use
2606 extern HANDLE winsock_lib
;
2607 extern BOOL
term_winsock (void);
2608 extern BOOL
init_winsock (int load_now
);
2610 DEFUN ("w32-has-winsock", Fw32_has_winsock
, Sw32_has_winsock
, 0, 1, 0,
2611 doc
: /* Test for presence of the Windows socket library `winsock'.
2612 Returns non-nil if winsock support is present, nil otherwise.
2614 If the optional argument LOAD-NOW is non-nil, the winsock library is
2615 also loaded immediately if not already loaded. If winsock is loaded,
2616 the winsock local hostname is returned (since this may be different from
2617 the value of `system-name' and should supplant it), otherwise t is
2618 returned to indicate winsock support is present. */)
2619 (Lisp_Object load_now
)
2623 have_winsock
= init_winsock (!NILP (load_now
));
2626 if (winsock_lib
!= NULL
)
2628 /* Return new value for system-name. The best way to do this
2629 is to call init_system_name, saving and restoring the
2630 original value to avoid side-effects. */
2631 Lisp_Object orig_hostname
= Vsystem_name
;
2632 Lisp_Object hostname
;
2634 init_system_name ();
2635 hostname
= Vsystem_name
;
2636 Vsystem_name
= orig_hostname
;
2644 DEFUN ("w32-unload-winsock", Fw32_unload_winsock
, Sw32_unload_winsock
,
2646 doc
: /* Unload the Windows socket library `winsock' if loaded.
2647 This is provided to allow dial-up socket connections to be disconnected
2648 when no longer needed. Returns nil without unloading winsock if any
2649 socket connections still exist. */)
2652 return term_winsock () ? Qt
: Qnil
;
2656 /* Some miscellaneous functions that are Windows specific, but not GUI
2657 specific (ie. are applicable in terminal or batch mode as well). */
2659 DEFUN ("w32-short-file-name", Fw32_short_file_name
, Sw32_short_file_name
, 1, 1, 0,
2660 doc
: /* Return the short file name version (8.3) of the full path of FILENAME.
2661 If FILENAME does not exist, return nil.
2662 All path elements in FILENAME are converted to their short names. */)
2663 (Lisp_Object filename
)
2665 char shortname
[MAX_PATH
];
2667 CHECK_STRING (filename
);
2669 /* first expand it. */
2670 filename
= Fexpand_file_name (filename
, Qnil
);
2672 /* luckily, this returns the short version of each element in the path. */
2673 if (w32_get_short_filename (SDATA (ENCODE_FILE (filename
)),
2674 shortname
, MAX_PATH
) == 0)
2677 dostounix_filename (shortname
);
2679 /* No need to DECODE_FILE, because 8.3 names are pure ASCII. */
2680 return build_string (shortname
);
2684 DEFUN ("w32-long-file-name", Fw32_long_file_name
, Sw32_long_file_name
,
2686 doc
: /* Return the long file name version of the full path of FILENAME.
2687 If FILENAME does not exist, return nil.
2688 All path elements in FILENAME are converted to their long names. */)
2689 (Lisp_Object filename
)
2691 char longname
[ MAX_UTF8_PATH
];
2694 CHECK_STRING (filename
);
2696 if (SBYTES (filename
) == 2
2697 && *(SDATA (filename
) + 1) == ':')
2700 /* first expand it. */
2701 filename
= Fexpand_file_name (filename
, Qnil
);
2703 if (!w32_get_long_filename (SDATA (ENCODE_FILE (filename
)), longname
,
2707 dostounix_filename (longname
);
2709 /* If we were passed only a drive, make sure that a slash is not appended
2710 for consistency with directories. Allow for drive mapping via SUBST
2711 in case expand-file-name is ever changed to expand those. */
2712 if (drive_only
&& longname
[1] == ':' && longname
[2] == '/' && !longname
[3])
2715 return DECODE_FILE (build_unibyte_string (longname
));
2718 DEFUN ("w32-set-process-priority", Fw32_set_process_priority
,
2719 Sw32_set_process_priority
, 2, 2, 0,
2720 doc
: /* Set the priority of PROCESS to PRIORITY.
2721 If PROCESS is nil, the priority of Emacs is changed, otherwise the
2722 priority of the process whose pid is PROCESS is changed.
2723 PRIORITY should be one of the symbols high, normal, or low;
2724 any other symbol will be interpreted as normal.
2726 If successful, the return value is t, otherwise nil. */)
2727 (Lisp_Object process
, Lisp_Object priority
)
2729 HANDLE proc_handle
= GetCurrentProcess ();
2730 DWORD priority_class
= NORMAL_PRIORITY_CLASS
;
2731 Lisp_Object result
= Qnil
;
2733 CHECK_SYMBOL (priority
);
2735 if (!NILP (process
))
2740 CHECK_NUMBER (process
);
2742 /* Allow pid to be an internally generated one, or one obtained
2743 externally. This is necessary because real pids on Windows 95 are
2746 pid
= XINT (process
);
2747 cp
= find_child_pid (pid
);
2749 pid
= cp
->procinfo
.dwProcessId
;
2751 proc_handle
= OpenProcess (PROCESS_SET_INFORMATION
, FALSE
, pid
);
2754 if (EQ (priority
, Qhigh
))
2755 priority_class
= HIGH_PRIORITY_CLASS
;
2756 else if (EQ (priority
, Qlow
))
2757 priority_class
= IDLE_PRIORITY_CLASS
;
2759 if (proc_handle
!= NULL
)
2761 if (SetPriorityClass (proc_handle
, priority_class
))
2763 if (!NILP (process
))
2764 CloseHandle (proc_handle
);
2770 #ifdef HAVE_LANGINFO_CODESET
2771 /* Emulation of nl_langinfo. Used in fns.c:Flocale_info. */
2773 nl_langinfo (nl_item item
)
2775 /* Conversion of Posix item numbers to their Windows equivalents. */
2776 static const LCTYPE w32item
[] = {
2777 LOCALE_IDEFAULTANSICODEPAGE
,
2778 LOCALE_SDAYNAME1
, LOCALE_SDAYNAME2
, LOCALE_SDAYNAME3
,
2779 LOCALE_SDAYNAME4
, LOCALE_SDAYNAME5
, LOCALE_SDAYNAME6
, LOCALE_SDAYNAME7
,
2780 LOCALE_SMONTHNAME1
, LOCALE_SMONTHNAME2
, LOCALE_SMONTHNAME3
,
2781 LOCALE_SMONTHNAME4
, LOCALE_SMONTHNAME5
, LOCALE_SMONTHNAME6
,
2782 LOCALE_SMONTHNAME7
, LOCALE_SMONTHNAME8
, LOCALE_SMONTHNAME9
,
2783 LOCALE_SMONTHNAME10
, LOCALE_SMONTHNAME11
, LOCALE_SMONTHNAME12
2786 static char *nl_langinfo_buf
= NULL
;
2787 static int nl_langinfo_len
= 0;
2789 if (nl_langinfo_len
<= 0)
2790 nl_langinfo_buf
= xmalloc (nl_langinfo_len
= 1);
2792 if (item
< 0 || item
>= _NL_NUM
)
2793 nl_langinfo_buf
[0] = 0;
2796 LCID cloc
= GetThreadLocale ();
2797 int need_len
= GetLocaleInfo (cloc
, w32item
[item
] | LOCALE_USE_CP_ACP
,
2801 nl_langinfo_buf
[0] = 0;
2804 if (item
== CODESET
)
2806 need_len
+= 2; /* for the "cp" prefix */
2807 if (need_len
< 8) /* for the case we call GetACP */
2810 if (nl_langinfo_len
<= need_len
)
2811 nl_langinfo_buf
= xrealloc (nl_langinfo_buf
,
2812 nl_langinfo_len
= need_len
);
2813 if (!GetLocaleInfo (cloc
, w32item
[item
] | LOCALE_USE_CP_ACP
,
2814 nl_langinfo_buf
, nl_langinfo_len
))
2815 nl_langinfo_buf
[0] = 0;
2816 else if (item
== CODESET
)
2818 if (strcmp (nl_langinfo_buf
, "0") == 0 /* CP_ACP */
2819 || strcmp (nl_langinfo_buf
, "1") == 0) /* CP_OEMCP */
2820 sprintf (nl_langinfo_buf
, "cp%u", GetACP ());
2823 memmove (nl_langinfo_buf
+ 2, nl_langinfo_buf
,
2824 strlen (nl_langinfo_buf
) + 1);
2825 nl_langinfo_buf
[0] = 'c';
2826 nl_langinfo_buf
[1] = 'p';
2831 return nl_langinfo_buf
;
2833 #endif /* HAVE_LANGINFO_CODESET */
2835 DEFUN ("w32-get-locale-info", Fw32_get_locale_info
,
2836 Sw32_get_locale_info
, 1, 2, 0,
2837 doc
: /* Return information about the Windows locale LCID.
2838 By default, return a three letter locale code which encodes the default
2839 language as the first two characters, and the country or regional variant
2840 as the third letter. For example, ENU refers to `English (United States)',
2841 while ENC means `English (Canadian)'.
2843 If the optional argument LONGFORM is t, the long form of the locale
2844 name is returned, e.g. `English (United States)' instead; if LONGFORM
2845 is a number, it is interpreted as an LCTYPE constant and the corresponding
2846 locale information is returned.
2848 If LCID (a 16-bit number) is not a valid locale, the result is nil. */)
2849 (Lisp_Object lcid
, Lisp_Object longform
)
2853 char abbrev_name
[32] = { 0 };
2854 char full_name
[256] = { 0 };
2856 CHECK_NUMBER (lcid
);
2858 if (!IsValidLocale (XINT (lcid
), LCID_SUPPORTED
))
2861 if (NILP (longform
))
2863 got_abbrev
= GetLocaleInfo (XINT (lcid
),
2864 LOCALE_SABBREVLANGNAME
| LOCALE_USE_CP_ACP
,
2865 abbrev_name
, sizeof (abbrev_name
));
2867 return build_string (abbrev_name
);
2869 else if (EQ (longform
, Qt
))
2871 got_full
= GetLocaleInfo (XINT (lcid
),
2872 LOCALE_SLANGUAGE
| LOCALE_USE_CP_ACP
,
2873 full_name
, sizeof (full_name
));
2875 return DECODE_SYSTEM (build_string (full_name
));
2877 else if (NUMBERP (longform
))
2879 got_full
= GetLocaleInfo (XINT (lcid
),
2881 full_name
, sizeof (full_name
));
2882 /* GetLocaleInfo's return value includes the terminating null
2883 character, when the returned information is a string, whereas
2884 make_unibyte_string needs the string length without the
2885 terminating null. */
2887 return make_unibyte_string (full_name
, got_full
- 1);
2894 DEFUN ("w32-get-current-locale-id", Fw32_get_current_locale_id
,
2895 Sw32_get_current_locale_id
, 0, 0, 0,
2896 doc
: /* Return Windows locale id for current locale setting.
2897 This is a numerical value; use `w32-get-locale-info' to convert to a
2898 human-readable form. */)
2901 return make_number (GetThreadLocale ());
2905 int_from_hex (char * s
)
2908 static char hex
[] = "0123456789abcdefABCDEF";
2911 while (*s
&& (p
= strchr (hex
, *s
)) != NULL
)
2913 unsigned digit
= p
- hex
;
2916 val
= val
* 16 + digit
;
2922 /* We need to build a global list, since the EnumSystemLocale callback
2923 function isn't given a context pointer. */
2924 Lisp_Object Vw32_valid_locale_ids
;
2926 static BOOL CALLBACK ALIGN_STACK
2927 enum_locale_fn (LPTSTR localeNum
)
2929 DWORD id
= int_from_hex (localeNum
);
2930 Vw32_valid_locale_ids
= Fcons (make_number (id
), Vw32_valid_locale_ids
);
2934 DEFUN ("w32-get-valid-locale-ids", Fw32_get_valid_locale_ids
,
2935 Sw32_get_valid_locale_ids
, 0, 0, 0,
2936 doc
: /* Return list of all valid Windows locale ids.
2937 Each id is a numerical value; use `w32-get-locale-info' to convert to a
2938 human-readable form. */)
2941 Vw32_valid_locale_ids
= Qnil
;
2943 EnumSystemLocales (enum_locale_fn
, LCID_SUPPORTED
);
2945 Vw32_valid_locale_ids
= Fnreverse (Vw32_valid_locale_ids
);
2946 return Vw32_valid_locale_ids
;
2950 DEFUN ("w32-get-default-locale-id", Fw32_get_default_locale_id
, Sw32_get_default_locale_id
, 0, 1, 0,
2951 doc
: /* Return Windows locale id for default locale setting.
2952 By default, the system default locale setting is returned; if the optional
2953 parameter USERP is non-nil, the user default locale setting is returned.
2954 This is a numerical value; use `w32-get-locale-info' to convert to a
2955 human-readable form. */)
2959 return make_number (GetSystemDefaultLCID ());
2960 return make_number (GetUserDefaultLCID ());
2964 DEFUN ("w32-set-current-locale", Fw32_set_current_locale
, Sw32_set_current_locale
, 1, 1, 0,
2965 doc
: /* Make Windows locale LCID be the current locale setting for Emacs.
2966 If successful, the new locale id is returned, otherwise nil. */)
2969 CHECK_NUMBER (lcid
);
2971 if (!IsValidLocale (XINT (lcid
), LCID_SUPPORTED
))
2974 if (!SetThreadLocale (XINT (lcid
)))
2977 /* Need to set input thread locale if present. */
2978 if (dwWindowsThreadId
)
2979 /* Reply is not needed. */
2980 PostThreadMessage (dwWindowsThreadId
, WM_EMACS_SETLOCALE
, XINT (lcid
), 0);
2982 return make_number (GetThreadLocale ());
2986 /* We need to build a global list, since the EnumCodePages callback
2987 function isn't given a context pointer. */
2988 Lisp_Object Vw32_valid_codepages
;
2990 static BOOL CALLBACK ALIGN_STACK
2991 enum_codepage_fn (LPTSTR codepageNum
)
2993 DWORD id
= atoi (codepageNum
);
2994 Vw32_valid_codepages
= Fcons (make_number (id
), Vw32_valid_codepages
);
2998 DEFUN ("w32-get-valid-codepages", Fw32_get_valid_codepages
,
2999 Sw32_get_valid_codepages
, 0, 0, 0,
3000 doc
: /* Return list of all valid Windows codepages. */)
3003 Vw32_valid_codepages
= Qnil
;
3005 EnumSystemCodePages (enum_codepage_fn
, CP_SUPPORTED
);
3007 Vw32_valid_codepages
= Fnreverse (Vw32_valid_codepages
);
3008 return Vw32_valid_codepages
;
3012 DEFUN ("w32-get-console-codepage", Fw32_get_console_codepage
,
3013 Sw32_get_console_codepage
, 0, 0, 0,
3014 doc
: /* Return current Windows codepage for console input. */)
3017 return make_number (GetConsoleCP ());
3021 DEFUN ("w32-set-console-codepage", Fw32_set_console_codepage
,
3022 Sw32_set_console_codepage
, 1, 1, 0,
3023 doc
: /* Make Windows codepage CP be the codepage for Emacs tty keyboard input.
3024 This codepage setting affects keyboard input in tty mode.
3025 If successful, the new CP is returned, otherwise nil. */)
3030 if (!IsValidCodePage (XINT (cp
)))
3033 if (!SetConsoleCP (XINT (cp
)))
3036 return make_number (GetConsoleCP ());
3040 DEFUN ("w32-get-console-output-codepage", Fw32_get_console_output_codepage
,
3041 Sw32_get_console_output_codepage
, 0, 0, 0,
3042 doc
: /* Return current Windows codepage for console output. */)
3045 return make_number (GetConsoleOutputCP ());
3049 DEFUN ("w32-set-console-output-codepage", Fw32_set_console_output_codepage
,
3050 Sw32_set_console_output_codepage
, 1, 1, 0,
3051 doc
: /* Make Windows codepage CP be the codepage for Emacs console output.
3052 This codepage setting affects display in tty mode.
3053 If successful, the new CP is returned, otherwise nil. */)
3058 if (!IsValidCodePage (XINT (cp
)))
3061 if (!SetConsoleOutputCP (XINT (cp
)))
3064 return make_number (GetConsoleOutputCP ());
3068 DEFUN ("w32-get-codepage-charset", Fw32_get_codepage_charset
,
3069 Sw32_get_codepage_charset
, 1, 1, 0,
3070 doc
: /* Return charset ID corresponding to codepage CP.
3071 Returns nil if the codepage is not valid or its charset ID could
3074 Note that this function is only guaranteed to work with ANSI
3075 codepages; most console codepages are not supported and will
3084 if (!IsValidCodePage (XINT (cp
)))
3087 /* Going through a temporary DWORD variable avoids compiler warning
3088 about cast to pointer from integer of different size, when
3089 building --with-wide-int. */
3091 if (TranslateCharsetInfo ((DWORD
*) dwcp
, &info
, TCI_SRCCODEPAGE
))
3092 return make_number (info
.ciCharset
);
3098 DEFUN ("w32-get-valid-keyboard-layouts", Fw32_get_valid_keyboard_layouts
,
3099 Sw32_get_valid_keyboard_layouts
, 0, 0, 0,
3100 doc
: /* Return list of Windows keyboard languages and layouts.
3101 The return value is a list of pairs of language id and layout id. */)
3104 int num_layouts
= GetKeyboardLayoutList (0, NULL
);
3105 HKL
* layouts
= (HKL
*) alloca (num_layouts
* sizeof (HKL
));
3106 Lisp_Object obj
= Qnil
;
3108 if (GetKeyboardLayoutList (num_layouts
, layouts
) == num_layouts
)
3110 while (--num_layouts
>= 0)
3112 HKL kl
= layouts
[num_layouts
];
3114 obj
= Fcons (Fcons (make_number (LOWORD (kl
)),
3115 make_number (HIWORD (kl
))),
3124 DEFUN ("w32-get-keyboard-layout", Fw32_get_keyboard_layout
,
3125 Sw32_get_keyboard_layout
, 0, 0, 0,
3126 doc
: /* Return current Windows keyboard language and layout.
3127 The return value is the cons of the language id and the layout id. */)
3130 HKL kl
= GetKeyboardLayout (dwWindowsThreadId
);
3132 return Fcons (make_number (LOWORD (kl
)),
3133 make_number (HIWORD (kl
)));
3137 DEFUN ("w32-set-keyboard-layout", Fw32_set_keyboard_layout
,
3138 Sw32_set_keyboard_layout
, 1, 1, 0,
3139 doc
: /* Make LAYOUT be the current keyboard layout for Emacs.
3140 The keyboard layout setting affects interpretation of keyboard input.
3141 If successful, the new layout id is returned, otherwise nil. */)
3142 (Lisp_Object layout
)
3146 CHECK_CONS (layout
);
3147 CHECK_NUMBER_CAR (layout
);
3148 CHECK_NUMBER_CDR (layout
);
3150 kl
= (HKL
) (UINT_PTR
) ((XINT (XCAR (layout
)) & 0xffff)
3151 | (XINT (XCDR (layout
)) << 16));
3153 /* Synchronize layout with input thread. */
3154 if (dwWindowsThreadId
)
3156 if (PostThreadMessage (dwWindowsThreadId
, WM_EMACS_SETKEYBOARDLAYOUT
,
3160 GetMessage (&msg
, NULL
, WM_EMACS_DONE
, WM_EMACS_DONE
);
3162 if (msg
.wParam
== 0)
3166 else if (!ActivateKeyboardLayout (kl
, 0))
3169 return Fw32_get_keyboard_layout ();
3172 /* Two variables to interface between get_lcid and the EnumLocales
3173 callback function below. */
3174 #ifndef LOCALE_NAME_MAX_LENGTH
3175 # define LOCALE_NAME_MAX_LENGTH 85
3177 static LCID found_lcid
;
3178 static char lname
[3 * LOCALE_NAME_MAX_LENGTH
+ 1 + 1];
3180 /* Callback function for EnumLocales. */
3181 static BOOL CALLBACK
3182 get_lcid_callback (LPTSTR locale_num_str
)
3185 char locval
[2 * LOCALE_NAME_MAX_LENGTH
+ 1 + 1];
3186 LCID try_lcid
= strtoul (locale_num_str
, &endp
, 16);
3188 if (GetLocaleInfo (try_lcid
, LOCALE_SABBREVLANGNAME
,
3189 locval
, LOCALE_NAME_MAX_LENGTH
))
3193 /* This is for when they only specify the language, as in "ENU". */
3194 if (stricmp (locval
, lname
) == 0)
3196 found_lcid
= try_lcid
;
3199 locval_len
= strlen (locval
);
3200 strcpy (locval
+ locval_len
, "_");
3201 if (GetLocaleInfo (try_lcid
, LOCALE_SABBREVCTRYNAME
,
3202 locval
+ locval_len
+ 1, LOCALE_NAME_MAX_LENGTH
))
3204 locval_len
= strlen (locval
);
3205 if (strnicmp (locval
, lname
, locval_len
) == 0
3206 && (lname
[locval_len
] == '.'
3207 || lname
[locval_len
] == '\0'))
3209 found_lcid
= try_lcid
;
3217 /* Return the Locale ID (LCID) number given the locale's name, a
3218 string, in LOCALE_NAME. This works by enumerating all the locales
3219 supported by the system, until we find one whose name matches
3222 get_lcid (const char *locale_name
)
3224 /* A simple cache. */
3225 static LCID last_lcid
;
3226 static char last_locale
[1000];
3228 /* The code below is not thread-safe, as it uses static variables.
3229 But this function is called only from the Lisp thread. */
3230 if (last_lcid
> 0 && strcmp (locale_name
, last_locale
) == 0)
3233 strncpy (lname
, locale_name
, sizeof (lname
) - 1);
3234 lname
[sizeof (lname
) - 1] = '\0';
3236 EnumSystemLocales (get_lcid_callback
, LCID_SUPPORTED
);
3239 last_lcid
= found_lcid
;
3240 strcpy (last_locale
, locale_name
);
3245 #ifndef _NSLCMPERROR
3246 # define _NSLCMPERROR INT_MAX
3248 #ifndef LINGUISTIC_IGNORECASE
3249 # define LINGUISTIC_IGNORECASE 0x00000010
3253 w32_compare_strings (const char *s1
, const char *s2
, char *locname
,
3256 LCID lcid
= GetThreadLocale ();
3257 wchar_t *string1_w
, *string2_w
;
3259 extern BOOL g_b_init_compare_string_w
;
3260 static int (WINAPI
*pCompareStringW
)(LCID
, DWORD
, LPCWSTR
, int, LPCWSTR
, int);
3265 /* The LCID machinery doesn't seem to support the "C" locale, so we
3266 need to do that by hand. */
3268 && ((locname
[0] == 'C' && (locname
[1] == '\0' || locname
[1] == '.'))
3269 || strcmp (locname
, "POSIX") == 0))
3270 return (ignore_case
? stricmp (s1
, s2
) : strcmp (s1
, s2
));
3272 if (!g_b_init_compare_string_w
)
3274 if (os_subtype
== OS_9X
)
3276 pCompareStringW
= GetProcAddress (LoadLibrary ("Unicows.dll"),
3278 if (!pCompareStringW
)
3281 /* This return value is compatible with wcscoll and
3282 other MS CRT functions. */
3283 return _NSLCMPERROR
;
3287 pCompareStringW
= CompareStringW
;
3289 g_b_init_compare_string_w
= 1;
3292 needed
= pMultiByteToWideChar (CP_UTF8
, MB_ERR_INVALID_CHARS
, s1
, -1, NULL
, 0);
3295 SAFE_NALLOCA (string1_w
, 1, needed
+ 1);
3296 pMultiByteToWideChar (CP_UTF8
, MB_ERR_INVALID_CHARS
, s1
, -1,
3302 return _NSLCMPERROR
;
3305 needed
= pMultiByteToWideChar (CP_UTF8
, MB_ERR_INVALID_CHARS
, s2
, -1, NULL
, 0);
3308 SAFE_NALLOCA (string2_w
, 1, needed
+ 1);
3309 pMultiByteToWideChar (CP_UTF8
, MB_ERR_INVALID_CHARS
, s2
, -1,
3316 return _NSLCMPERROR
;
3321 /* Convert locale name string to LCID. We don't want to use
3322 LocaleNameToLCID because (a) it is only available since
3323 Vista, and (b) it doesn't accept locale names returned by
3324 'setlocale' and 'GetLocaleInfo'. */
3325 LCID new_lcid
= get_lcid (locname
);
3330 error ("Invalid locale %s: Invalid argument", locname
);
3335 /* NORM_IGNORECASE ignores any tertiary distinction, not just
3336 case variants. LINGUISTIC_IGNORECASE is more selective, and
3337 is sensitive to the locale's language, but it is not
3338 available before Vista. */
3339 if (w32_major_version
>= 6)
3340 flags
|= LINGUISTIC_IGNORECASE
;
3342 flags
|= NORM_IGNORECASE
;
3344 /* This approximates what glibc collation functions do when the
3345 locale's codeset is UTF-8. */
3346 if (!NILP (Vw32_collate_ignore_punctuation
))
3347 flags
|= NORM_IGNORESYMBOLS
;
3348 val
= pCompareStringW (lcid
, flags
, string1_w
, -1, string2_w
, -1);
3353 return _NSLCMPERROR
;
3360 syms_of_ntproc (void)
3362 DEFSYM (Qhigh
, "high");
3363 DEFSYM (Qlow
, "low");
3365 defsubr (&Sw32_has_winsock
);
3366 defsubr (&Sw32_unload_winsock
);
3368 defsubr (&Sw32_short_file_name
);
3369 defsubr (&Sw32_long_file_name
);
3370 defsubr (&Sw32_set_process_priority
);
3371 defsubr (&Sw32_get_locale_info
);
3372 defsubr (&Sw32_get_current_locale_id
);
3373 defsubr (&Sw32_get_default_locale_id
);
3374 defsubr (&Sw32_get_valid_locale_ids
);
3375 defsubr (&Sw32_set_current_locale
);
3377 defsubr (&Sw32_get_console_codepage
);
3378 defsubr (&Sw32_set_console_codepage
);
3379 defsubr (&Sw32_get_console_output_codepage
);
3380 defsubr (&Sw32_set_console_output_codepage
);
3381 defsubr (&Sw32_get_valid_codepages
);
3382 defsubr (&Sw32_get_codepage_charset
);
3384 defsubr (&Sw32_get_valid_keyboard_layouts
);
3385 defsubr (&Sw32_get_keyboard_layout
);
3386 defsubr (&Sw32_set_keyboard_layout
);
3388 DEFVAR_LISP ("w32-quote-process-args", Vw32_quote_process_args
,
3389 doc
: /* Non-nil enables quoting of process arguments to ensure correct parsing.
3390 Because Windows does not directly pass argv arrays to child processes,
3391 programs have to reconstruct the argv array by parsing the command
3392 line string. For an argument to contain a space, it must be enclosed
3393 in double quotes or it will be parsed as multiple arguments.
3395 If the value is a character, that character will be used to escape any
3396 quote characters that appear, otherwise a suitable escape character
3397 will be chosen based on the type of the program. */);
3398 Vw32_quote_process_args
= Qt
;
3400 DEFVAR_LISP ("w32-start-process-show-window",
3401 Vw32_start_process_show_window
,
3402 doc
: /* When nil, new child processes hide their windows.
3403 When non-nil, they show their window in the method of their choice.
3404 This variable doesn't affect GUI applications, which will never be hidden. */);
3405 Vw32_start_process_show_window
= Qnil
;
3407 DEFVAR_LISP ("w32-start-process-share-console",
3408 Vw32_start_process_share_console
,
3409 doc
: /* When nil, new child processes are given a new console.
3410 When non-nil, they share the Emacs console; this has the limitation of
3411 allowing only one DOS subprocess to run at a time (whether started directly
3412 or indirectly by Emacs), and preventing Emacs from cleanly terminating the
3413 subprocess group, but may allow Emacs to interrupt a subprocess that doesn't
3414 otherwise respond to interrupts from Emacs. */);
3415 Vw32_start_process_share_console
= Qnil
;
3417 DEFVAR_LISP ("w32-start-process-inherit-error-mode",
3418 Vw32_start_process_inherit_error_mode
,
3419 doc
: /* When nil, new child processes revert to the default error mode.
3420 When non-nil, they inherit their error mode setting from Emacs, which stops
3421 them blocking when trying to access unmounted drives etc. */);
3422 Vw32_start_process_inherit_error_mode
= Qt
;
3424 DEFVAR_INT ("w32-pipe-read-delay", w32_pipe_read_delay
,
3425 doc
: /* Forced delay before reading subprocess output.
3426 This is done to improve the buffering of subprocess output, by
3427 avoiding the inefficiency of frequently reading small amounts of data.
3429 If positive, the value is the number of milliseconds to sleep before
3430 reading the subprocess output. If negative, the magnitude is the number
3431 of time slices to wait (effectively boosting the priority of the child
3432 process temporarily). A value of zero disables waiting entirely. */);
3433 w32_pipe_read_delay
= 50;
3435 DEFVAR_LISP ("w32-downcase-file-names", Vw32_downcase_file_names
,
3436 doc
: /* Non-nil means convert all-upper case file names to lower case.
3437 This applies when performing completions and file name expansion.
3438 Note that the value of this setting also affects remote file names,
3439 so you probably don't want to set to non-nil if you use case-sensitive
3440 filesystems via ange-ftp. */);
3441 Vw32_downcase_file_names
= Qnil
;
3444 DEFVAR_LISP ("w32-generate-fake-inodes", Vw32_generate_fake_inodes
,
3445 doc
: /* Non-nil means attempt to fake realistic inode values.
3446 This works by hashing the truename of files, and should detect
3447 aliasing between long and short (8.3 DOS) names, but can have
3448 false positives because of hash collisions. Note that determining
3449 the truename of a file can be slow. */);
3450 Vw32_generate_fake_inodes
= Qnil
;
3453 DEFVAR_LISP ("w32-get-true-file-attributes", Vw32_get_true_file_attributes
,
3454 doc
: /* Non-nil means determine accurate file attributes in `file-attributes'.
3455 This option controls whether to issue additional system calls to determine
3456 accurate link counts, file type, and ownership information. It is more
3457 useful for files on NTFS volumes, where hard links and file security are
3458 supported, than on volumes of the FAT family.
3460 Without these system calls, link count will always be reported as 1 and file
3461 ownership will be attributed to the current user.
3462 The default value `local' means only issue these system calls for files
3463 on local fixed drives. A value of nil means never issue them.
3464 Any other non-nil value means do this even on remote and removable drives
3465 where the performance impact may be noticeable even on modern hardware. */);
3466 Vw32_get_true_file_attributes
= Qlocal
;
3468 DEFVAR_LISP ("w32-collate-ignore-punctuation",
3469 Vw32_collate_ignore_punctuation
,
3470 doc
: /* Non-nil causes string collation functions ignore punctuation on MS-Windows.
3471 On Posix platforms, `string-collate-lessp' and `string-collate-equalp'
3472 ignore punctuation characters when they compare strings, if the
3473 locale's codeset is UTF-8, as in \"en_US.UTF-8\". Binding this option
3474 to a non-nil value will achieve a similar effect on MS-Windows, where
3475 locales with UTF-8 codeset are not supported.
3477 Note that setting this to non-nil will also ignore blanks and symbols
3478 in the strings. So do NOT use this option when comparing file names
3479 for equality, only when you need to sort them. */);
3480 Vw32_collate_ignore_punctuation
= Qnil
;
3482 staticpro (&Vw32_valid_locale_ids
);
3483 staticpro (&Vw32_valid_codepages
);
3485 /* end of w32proc.c */