From 5f9f465ae7f831bb49ec97311ba8f32311bc3e6b Mon Sep 17 00:00:00 2001 From: "Adam D. Ruppe" Date: Tue, 8 Sep 2015 09:21:25 -0400 Subject: [PATCH] sigwinch on other posixes --- terminal.d | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/terminal.d b/terminal.d index 6eaa387..741ca02 100644 --- a/terminal.d +++ b/terminal.d @@ -20,10 +20,8 @@ module terminal; // FIXME: http://msdn.microsoft.com/en-us/library/windows/desktop/ms686016%28v=vs.85%29.aspx -version(linux) - enum SIGWINCH = 28; // FIXME: confirm this is correct on other posix - version(Posix) { + enum SIGWINCH = 28; __gshared bool windowSizeChanged = false; __gshared bool interrupted = false; /// you might periodically check this in a long operation and abort if it is set. Remember it is volatile. It is also sent through the input event loop via RealTimeConsoleInput __gshared bool hangedUp = false; /// similar to interrupted.