Skip to content

Commit 3fa8e6b

Browse files
committed
Fixed bug #8176 : Firebird 5 hang after starting remote profiling session
1 parent adf19fc commit 3fa8e6b

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/jrd/ProfilerManager.cpp

+4-1
Original file line numberDiff line numberDiff line change
@@ -791,7 +791,10 @@ void ProfilerIpc::internalSendAndReceive(thread_db* tdbb, Tag tag,
791791

792792
sharedMemory->eventPost(&header->serverEvent);
793793

794-
sharedMemory->eventWait(&header->clientEvent, value, 0);
794+
{
795+
EngineCheckout cout(tdbb, FB_FUNCTION);
796+
sharedMemory->eventWait(&header->clientEvent, value, 0);
797+
}
795798

796799
if (header->tag == Tag::RESPONSE)
797800
{

0 commit comments

Comments
 (0)