Every time, my application crash a core dump file is not generated. I remember that few days ago, on another server it was generated. I\'m running the app u
Note: If you have written any crash handler yourself, then the core might not get generated. So search for code with something on the line:
signal(SIGSEGV, );
so the SIGSEGV will be handled by handler and you will not get the core dump.