Changeset 778
- Timestamp:
- Jan 21, 2007, 1:29:17 AM (18 years ago)
- Location:
- trunk/src/gmake
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/src/gmake/Makefile.kmk ¶
r775 r778 46 46 BUILD_PLATFORM_ARCH=\"$(BUILD_TARGET_ARCH)\" \ 47 47 BUILD_PLATFORM_CPU=\"$(BUILD_TARGET_CPU)\" 48 kmk_DEFS.win = CONFIG_NEW_WIN32_CTRL_EVENT 48 49 49 50 kmk_SOURCES = \ -
TabularUnified trunk/src/gmake/commands.c ¶
r765 r778 442 442 exit (10); 443 443 #else /* not Amiga */ 444 #if def WINDOWS32444 #if defined(WINDOWS32) && !defined(CONFIG_NEW_WIN32_CTRL_EVENT) 445 445 extern HANDLE main_thread; 446 446 … … 516 516 517 517 remove_intermediates (1); 518 519 518 #ifdef SIGQUIT 520 519 if (sig == SIGQUIT) … … 525 524 526 525 #ifdef WINDOWS32 526 #ifndef CONFIG_NEW_WIN32_CTRL_EVENT 527 527 if (main_thread) 528 528 CloseHandle (main_thread); 529 #endif /* !CONFIG_NEW_WIN32_CTRL_EVENT */ 529 530 /* Cannot call W32_kill with a pid (it needs a handle). The exit 530 531 status of 130 emulates what happens in Bash. */ -
TabularUnified trunk/src/gmake/main.c ¶
r765 r778 927 927 return (sh_found); 928 928 } 929 930 /* bird: */ 931 #ifdef CONFIG_NEW_WIN32_CTRL_EVENT 932 #include <process.h> 933 static UINT g_tidMainThread = 0; 934 static int g_sigPending = 0; /* lazy bird */ 935 936 static __declspec(naked) void dispatch_stub(void) 937 { 938 __asm { 939 pushfd 940 pushad 941 cld 942 } 943 fflush(stdout); 944 /*fprintf(stderr, "dbg: raising %s on the main thread (%d)\n", g_sigPending == SIGINT ? "SIGINT" : "SIGBREAK", _getpid());*/ 945 raise(g_sigPending); 946 __asm { 947 popad 948 popfd 949 ret 950 } 951 } 952 953 static BOOL WINAPI ctrl_event(DWORD CtrlType) 954 { 955 int sig = (CtrlType == CTRL_C_EVENT) ? SIGINT : SIGBREAK; 956 HANDLE hThread; 957 CONTEXT Ctx; 958 959 /* open the main thread and suspend it. */ 960 hThread = OpenThread(THREAD_ALL_ACCESS, FALSE, g_tidMainThread); 961 SuspendThread(hThread); 962 963 /* Get the thread context and */ 964 memset(&Ctx, 0, sizeof(Ctx)); 965 Ctx.ContextFlags = CONTEXT_FULL; 966 GetThreadContext(hThread, &Ctx); 967 968 /* If we've got a valid Esp, dispatch it on the main thread 969 otherwise raise the signal in the ctrl-event thread (this). */ 970 if (Ctx.Esp >= 0x1000) 971 { 972 ((uintptr_t *)Ctx.Esp)[-1] = Ctx.Eip; 973 Ctx.Esp -= sizeof(uintptr_t); 974 Ctx.Eip = (uintptr_t)&dispatch_stub; 975 976 SetThreadContext(hThread, &Ctx); 977 g_sigPending = sig; 978 ResumeThread(hThread); 979 CloseHandle(hThread); 980 } 981 else 982 { 983 fprintf(stderr, "dbg: raising %s on the ctrl-event thread (%d)\n", sig == SIGINT ? "SIGINT" : "SIGBREAK", _getpid()); 984 raise(sig); 985 ResumeThread(hThread); 986 CloseHandle(hThread); 987 exit(130); 988 } 989 990 Sleep(1); 991 return TRUE; 992 } 993 #endif /* CONFIG_NEW_WIN32_CTRL_EVENT */ 994 929 995 #endif /* WINDOWS32 */ 930 996 … … 1095 1161 FATAL_SIG (SIGXFSZ); 1096 1162 #endif 1163 1164 #ifdef CONFIG_NEW_WIN32_CTRL_EVENT 1165 /* bird: dispatch signals in our own way to try avoid deadlocks. */ 1166 g_tidMainThread = GetCurrentThreadId (); 1167 SetConsoleCtrlHandler (ctrl_event, TRUE); 1168 #endif /* CONFIG_NEW_WIN32_CTRL_EVENT */ 1097 1169 1098 1170 #undef FATAL_SIG
Note:
See TracChangeset
for help on using the changeset viewer.