MCPcopy Create free account
hub / github.com/GameTechDev/PresentMon / Submit

Method Submit

IntelPresentMon/CommonUtilities/log/Channel.cpp:348–361  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

346 }
347 }
348 void Channel::Submit(Entry&& e) noexcept
349 {
350 try {
351 if (IsSynchronousModeEnabled() && !IsWorkerThread()) {
352 EnqueueEntryWait(std::move(e));
353 }
354 else {
355 EnqueueEntry(std::move(e));
356 }
357 }
358 catch (...) {
359 pmlog_panic_("Exception thrown in Channel::Submit (move)");
360 }
361 }
362 void Channel::Submit(const Entry& e) noexcept
363 {
364 try {

Callers 3

EntryMarshallInjectorMethod · 0.45
Channel.cppFile · 0.45
commit_Method · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected