mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-03 06:49:52 +08:00
style: correct variable naming
Signed-off-by: Artur Harasimiuk <artur.harasimiuk@intel.com>
This commit is contained in:
committed by
Compute-Runtime-Automation
parent
eecde1e1f3
commit
d643c587b9
@@ -38,10 +38,10 @@ Event *Event::create(EventPool *eventPool, const ze_event_desc_t *desc, Device *
|
||||
}
|
||||
event->setUsingContextEndOffset(useContextEndOffset);
|
||||
|
||||
EventPoolImp *EventPoolImp = static_cast<struct EventPoolImp *>(eventPool);
|
||||
EventPoolImp *eventPoolImp = static_cast<struct EventPoolImp *>(eventPool);
|
||||
// do not reset even if it has been imported, since event pool
|
||||
// might have been imported after events being already signaled
|
||||
if (EventPoolImp->isImportedIpcPool == false) {
|
||||
if (eventPoolImp->isImportedIpcPool == false) {
|
||||
event->reset();
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user