02-04-2020 08:35 AM
Hello, I'm having some troubles with the multithreading concept, and i'm just starting to use that.
when I compiled I had this error:
FATAL RUN-TIME ERROR: Unknown source position, thread id 4524: A non-debuggable thread caused a 'General Protection' fault at address 0x54414E47. No source line information is available.
I didn't knew what does that mean. I looked for the explaination of this error but I didn't found something clear. I need some help in this topic.
Thanks 🙂
02-05-2020 08:38 AM
Mutithreaded programming in C is HARD. It can't be improvised. You need to read up on it and start from known working example. And then you still need to be very careful about what you do as it's critical to not write and read/wite the same memory space at the same time. There are plenty of techniques for that, none of which are easy nor clear.