SIG SEGV Error when starting simulation

My simulation currently does not work due to a SIG SEGV error. It previously worked, this error started all of a sudden. I didn’t do any major changes before the error came up.
Error message is the following:
ERROR Caught signal SIG SEGV(11)

How can I find out what went wrong?

Thanks in advance!

Hi @Lars ,
SIG SEGV error generally refers to memory allocation errors. It could happen if there are pointers in your C-Code (User.c) and if it is not allocated or released properly, or if it is pointing to a memory allocation which is not assigned/available. Could you please check your user User.c to check the allocation of your pointers?

Another method to debug this would be to start the CarMaker program in debug mode. You can read about debug mode in the Programmer’s Guide.