Merge "hipStreamAddCallback test seg faults" into amd-master-next

Этот коммит содержится в:
Christophe Paquot
2020-03-20 12:05:37 -04:00
коммит произвёл Gerrit Code Review
родитель 334a1f8770 31df9b358d
Коммит 446c8685e2
+5
Просмотреть файл
@@ -251,6 +251,11 @@ hipError_t hipStreamAddCallback(hipStream_t stream, hipStreamCallback_t callback
amd::HostQueue* hostQueue = reinterpret_cast<hip::Stream*>
(stream)->asHostQueue();
amd::Command* command = hostQueue->getLastQueuedCommand(true);
if (command == nullptr) {
amd::Command::EventWaitList eventWaitList;
command = new amd::Marker(*hostQueue, false, eventWaitList);
command->enqueue();
}
amd::Event& event = command->event();
StreamCallback* cbo = new StreamCallback(stream, callback, userData, command);