I have two kinds of Software Developers, one focus on native C and the other focus on .Net or mono, and we develop some integrated software by embedded mono. We did it by learning online and it seemed ok at the start. But gradually, we meet bugs about memory corruption more and more often. While it is costly to train them to be familiar with the other side and tons of interop stuff so that they won't contribute to a memory corruption integration software, as a manager, I am thinking maybe it is cheaper to have the standard C code:
- step 1 stop
GCthread before calling a mono, - step 2 call
result = mono_runtime_invoke(..), and - step 3 start
GCthread after all treatment about result is done by theCcode.
The memory corruption is very often that the C guy is doing something with a pointer pointed to the managed space while GC is freeing/moving the data.
How to achieve this and any comment ?