mirror of https://github.com/adamdruppe/arsd.git
sigwinch on other posixes
This commit is contained in:
parent
2a43ed57bd
commit
5f9f465ae7
|
@ -20,10 +20,8 @@ module terminal;
|
||||||
|
|
||||||
// FIXME: http://msdn.microsoft.com/en-us/library/windows/desktop/ms686016%28v=vs.85%29.aspx
|
// 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) {
|
version(Posix) {
|
||||||
|
enum SIGWINCH = 28;
|
||||||
__gshared bool windowSizeChanged = false;
|
__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 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.
|
__gshared bool hangedUp = false; /// similar to interrupted.
|
||||||
|
|
Loading…
Reference in New Issue