由以下代码生成的二进制文件在一台计算机(Windows 8 x64)上运行良好,在另一台计算机上崩溃(Windows Server 2012 R2 Standard x64):
import std.stdio;
import vibe.vibe;
void new_request(TCPConnection conn)
{
writeln("before");
try
{
throw new Exception("Exception");
}
catch (Throwable ex)
{
writeln(ex.msg);
}
writeln("after");
}
void main()
{
auto f = toDelegate(&new_request);
listenTCP(1605, f);
runEventLoop();
}
Windows 8 x64上的输出
before
Exception
after
Windows Server 2012 R2 Standard x64上的输出
before
然后崩溃。
在某些计算机上,我似乎无法在listenTCP
函数调用的委托中抛出任何异常。
这是众所周知的行为吗?是虫子吗?我应该向vibe.d论坛或其他地方报告吗?
我使用的是DMD 2.068.2,DUB 0.9.24和vibe.d 0.7.24。
dub.json看起来像这样:
{
"name": "vibe_helper",
"dependencies": {
"vibe-d": "==0.7.24"
},
"versions": ["VibeCustomMain"]
}
根据vibe.d官方论坛上的讨论结果,这种行为似乎与DMD已经公开的问题有关。