Files
electron/docs/api/structures/render-process-gone-details.md
trop[bot] fbb982350b docs: add missing webview render-process-gone event (#39543)
docs: add mising webview 'render-process-gone' event

Co-authored-by: trop[bot] <37223003+trop[bot]@users.noreply.github.com>
Co-authored-by: Milan Burda <milan.burda@gmail.com>
2023-08-17 10:33:11 +02:00

672 B

RenderProcessGoneDetails Object

  • reason string - The reason the render process is gone. Possible values:
    • clean-exit - Process exited with an exit code of zero
    • abnormal-exit - Process exited with a non-zero exit code
    • killed - Process was sent a SIGTERM or otherwise killed externally
    • crashed - Process crashed
    • oom - Process ran out of memory
    • launch-failed - Process never successfully launched
    • integrity-failure - Windows code integrity checks failed
  • exitCode Integer - The exit code of the process, unless reason is launch-failed, in which case exitCode will be a platform-specific launch failure error code.