QCefView icon indicating copy to clipboard operation
QCefView copied to clipboard

[BUG]: 关闭出现进程残留问题

Open lofonder opened this issue 5 months ago • 0 comments

Describe the bug 【Bug描述】

使用了113、109CEF版本都出现这个问题。 然后就是断点在调用CefShutdown();后系统出现进程残留。而且启动测试程序必须加入 config.addCommandLineSwitch("single-process"); 否则会出现GPU 错误问题。 这个退出进程残留的问题我看已经提交修复了代码了,不知道为何还会出现这个问题

To Reproduce 【复现步骤】

  1. Go to '...'
  2. Click on '....'
  3. Scroll down to '....'
  4. See error

Expected behavior 【正确的预期行为】

...

Screenshots 【截图】

void QCefContextPrivate::uninitializeCef() { logI("QCefContextPrivate::uninitializeCef()-begin"); if (!pApp_) return; logI("QCefContextPrivate::uninitializeCef()-1"); pAppDelegate_ = nullptr; pApp_ = nullptr;

// shutdown the cef CefShutdown(); logI("QCefContextPrivate::uninitializeCef()-2"); // clean job object if (windowsJobHandle_) { logI("QCefContextPrivate::uninitializeCef()-3"); ::CloseHandle(windowsJobHandle_); windowsJobHandle_ = nullptr; } logI("QCefContextPrivate::uninitializeCef()-end"); } //: # (如果可以请在下面请提供BUG的截图信息) //: # (If applicable, add screenshots to help explain your problem) ...

Environment 【BUG产生的环境】

  • OSR/NCW Mode:
  • OS & Version: [e.g. Windows/macOS/Linux] Windows
  • Qt Version: 5.14.2
  • CEF Version: 113.1.3

Additional context 【更多额外信息】

这是系统输出信息 destroy browser from native CCefClientDelegate is being destructed QCefView(0x35718c8) is being destructed destroy browser from native CCefClientDelegate is being destructed [INFO]QCefContext::~QCefContext() [INFO]QCefContext::uninit() [INFO]QCefContextPrivate::uninitializeCef()-begin [INFO]QCefContextPrivate::uninitializeCef()-1 CCefAppDelegate is being destructed [0217/225807.349:WARNING:spdy_session.cc(3491)] Received HEADERS for invalid stream 7 [0217/225807.349:WARNING:spdy_session.cc(3491)] Received HEADERS for invalid stream 7 这个后面进程就开始残留了。 //: # (如有更多额外信息,请在下面添加) //: # (Add any other context about the problem here) ...

lofonder avatar Feb 17 '24 15:02 lofonder