Skip to content

Commit

Permalink
Remove debug statements
Browse files Browse the repository at this point in the history
  • Loading branch information
fpetrini15 committed Feb 8, 2024
1 parent 80a5a9c commit 6d09d28
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions src/stub_launcher.cc
Original file line number Diff line number Diff line change
Expand Up @@ -784,13 +784,10 @@ StubLauncher::ReceiveMessageFromStub(
void
StubLauncher::WaitForStubProcess()
{
std::cerr << __FILE__ << " " << __FUNCTION__ << " " << __LINE__ << '\n';
#ifdef _WIN32
WaitForSingleObject(stub_pid_.hProcess, INFINITE);
CloseHandle(stub_pid_.hProcess);
CloseHandle(stub_pid_.hThread);
std::cerr << "Done waiting for stub process " << __FILE__ << " " << __LINE__
<< '\n';
#else
int status;
waitpid(stub_pid_, &status, 0);
Expand Down

0 comments on commit 6d09d28

Please sign in to comment.