1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-10 20:42:21 +02:00

RequestFastFinish on shutdown

This commit is contained in:
Brian Fiete 2021-12-28 10:34:31 -05:00
parent 4f1ed19bb8
commit dbe63cd529

View file

@ -689,9 +689,15 @@ namespace IDE
mSymbolReferenceHelper.Close();
if (mBfBuildCompiler != null)
{
mBfBuildCompiler.RequestFastFinish();
mBfBuildCompiler.CancelBackground();
}
if (mBfResolveCompiler != null)
{
mBfResolveCompiler.RequestFastFinish();
mBfResolveCompiler.CancelBackground();
}
#if IDE_C_SUPPORT
mDepClang.CancelBackground();