mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-08 11:38:21 +02:00
Comptime debugging
This commit is contained in:
parent
bbb97d1490
commit
ff2e40e3bf
40 changed files with 6213 additions and 443 deletions
|
@ -7658,6 +7658,12 @@ void BfCompiler::Cancel()
|
|||
mCanceling = true;
|
||||
mFastFinish = true;
|
||||
mHadCancel = true;
|
||||
if (mCEMachine != NULL)
|
||||
{
|
||||
AutoCrit autoCrit(mCEMachine->mCritSect);
|
||||
mCEMachine->mSpecialCheck = true;
|
||||
mFastFinish = true;
|
||||
}
|
||||
BfLogSysM("BfCompiler::Cancel\n");
|
||||
BpEvent("BfCompiler::Cancel", "");
|
||||
}
|
||||
|
@ -7665,6 +7671,8 @@ void BfCompiler::Cancel()
|
|||
void BfCompiler::RequestFastFinish()
|
||||
{
|
||||
mFastFinish = true;
|
||||
if (mCEMachine != NULL)
|
||||
mCEMachine->mSpecialCheck = true;
|
||||
BfLogSysM("BfCompiler::RequestFastFinish\n");
|
||||
BpEvent("BfCompiler::RequestFastFinish", "");
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue