sigwinch on other posixes

This commit is contained in:
Adam D. Ruppe 2015-09-08 09:21:25 -04:00
parent 2a43ed57bd
commit 5f9f465ae7
1 changed files with 1 additions and 3 deletions

View File

@ -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.