Python Forum

Full Version: Process finished with exit code -107374819 (0xC0000375)
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi.
Please I would like to ask you for help. I'm getting this exit code: Process finished with exit code -107374819 (0xC0000375). Is it possible to get any useful information from this exit code?

This crash occurs in this situation:
I have application which is receives data through web socket, and stores them in database. Everything works fine but it often crashes with this exit code. Often means 10 minutes - 3 hours. I suspect it happens when socket communication is heavy. I guess it could be something with threading used in socket library ?

  1. For web socket communication I use this library: https://pypi.org/project/websocket_client/
  2. To connect to database I use: https://pypi.org/project/mysql-connector-python/

Thank you very much for your help.
I use very often the websocket_client. This library is implemented in pure Python.
I got never this error code.

I guess it's the mysql plugin. It uses C and when something went wrong on C level, it may crash the interpreter.
I guess the error code does not come from the Python interpreter, instead the C code can emit this ExitCode.

I downloaded the project, but I did not find the error-code inside the source.
(Apr-05-2019, 12:21 PM)DeaD_EyE Wrote: [ -> ]I use very often the websocket_client. This library is implemented in pure Python.
I got never this error code.

I guess it's the mysql plugin. It uses C and when something went wrong on C level, it may crash the interpreter.
I guess the error code does not come from the Python interpreter, instead the C code can emit this ExitCode.

I downloaded the project, but I did not find the error-code inside the source.

Thank you I'll try to check mysql plugin.