mirror of
https://github.com/intel/compute-runtime.git
synced 2025-09-15 13:01:45 +08:00
Fortify events
- add some debug breaks - clean cmd ownership, there can't be situation when event holds 2 commands - cmd meaning cleanup - remove not needed try catch clause Change-Id: I5ad6877e7235de2d7f48818467cb4b92655aab97
This commit is contained in:

committed by
sys_ocldev

parent
6afb024f6f
commit
2b91ea85c6
@ -167,7 +167,7 @@ bool CommandQueue::isQueueBlocked() {
|
||||
if (this->virtualEvent->peekExecutionStatus() <= CL_COMPLETE) {
|
||||
UNRECOVERABLE_IF(this->virtualEvent == nullptr);
|
||||
|
||||
if (this->virtualEvent->peekIsCompletedByTermination() == false) {
|
||||
if (this->virtualEvent->isStatusCompletedByTermination() == false) {
|
||||
taskCount = this->virtualEvent->peekTaskCount();
|
||||
flushStamp->setStamp(this->virtualEvent->flushStamp->peekStamp());
|
||||
taskLevel = this->virtualEvent->taskLevel;
|
||||
|
Reference in New Issue
Block a user