File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
shared/source/command_stream Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -731,7 +731,7 @@ void CommandStreamReceiver::ensureHostFunctionWorkerStarted() {
731731}
732732
733733void CommandStreamReceiver::startHostFunctionWorker () {
734- auto lock = obrainHostFunctionWorkerStartLock ();
734+ auto lock = obtainHostFunctionWorkerStartLock ();
735735 if (this ->hostFunctionWorkerStarted .load (std::memory_order_relaxed)) {
736736 return ;
737737 }
@@ -1011,7 +1011,7 @@ std::unique_lock<CommandStreamReceiver::MutexType> CommandStreamReceiver::obtain
10111011 return std::unique_lock<CommandStreamReceiver::MutexType>(this ->hostPtrSurfaceCreationMutex );
10121012}
10131013
1014- std::unique_lock<CommandStreamReceiver::MutexType> CommandStreamReceiver::obrainHostFunctionWorkerStartLock () {
1014+ std::unique_lock<CommandStreamReceiver::MutexType> CommandStreamReceiver::obtainHostFunctionWorkerStartLock () {
10151015 return std::unique_lock<CommandStreamReceiver::MutexType>(this ->hostFunctionWorkerStartMutex );
10161016}
10171017
Original file line number Diff line number Diff line change @@ -575,7 +575,7 @@ class CommandStreamReceiver : NEO::NonCopyableAndNonMovableClass {
575575 void ensureHostFunctionWorkerStarted ();
576576 HostFunctionData &getHostFunctionData ();
577577 GraphicsAllocation *getHostFunctionDataAllocation ();
578- [[nodiscard]] std::unique_lock<MutexType> obrainHostFunctionWorkerStartLock ();
578+ [[nodiscard]] std::unique_lock<MutexType> obtainHostFunctionWorkerStartLock ();
579579
580580 protected:
581581 void initializeHostFunctionData ();
You can’t perform that action at this time.
0 commit comments