On Sunday, 11 February 2018 at 13:17:13 UTC, number wrote:
unable to fork: Cannot allocate memory
if i comment-out the line..
writeln(GdkKeysyms.GDK_Escape);
then it compiles/links/runs fine.
[...]
I actually want to close the application if escape key is
pressed with
if (eventKey.keyval == GdkKeysyms.GDK_Escape) ...
Some gtkd demo used core.stdc.stdlib.exit to quit the application.
I use widget.destroy now, seems to work fine.
About the compilation error with writeln(), its not a problem
anymore for me right now. Don't know if this is a [known] issue
or what the cause is.