I’m having some problems when trying to send some bots (Hypersonic).
I tried both sending the bot in plain C++ or precompiled.
In the first case I’m seeing: g++: “fatal error: Killed signal terminated program cc1plus”, randomly
With the precompiled the server kills the bot, and writes on standard error:
“Killed”
Sometimes it just dies before starting, so I don’t see neither KIlled nor any of my cerr
I never write “Killed” on cerr, that comes from out of my code.
It happens randomly. May be because I try to reserve a bit chunk of contiguous memory ( new array[256MB or more]). But I also tried a reserve with noexcept to avoid error when no memory is available but the “Killed” message keeps showing, killing my bot without any warning.
I don’t know what to look at.